function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mohsinkhan PathanMohsinkhan Pathan 

Hide File link from Chatter Feed

Hi All,

I have a requirement to hide the File Link in chatter feed. I have a VF Page and I am able to do this using the below code.
 
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
            <script>
               $j = $.noConflict();
               $j(document).ready(function(){

                    $j('#publisherAttachContentPost').hide();  
               });
                </script>

<div id="chatter-container">
        <chatter:feedWithFollowers entityId="{!Object1__c.id}" showHeader ="true" oncomplete="refreshStatus()" reRender="statusPanel" />
    </div>

But this works only when show Feed is clicked and the record is opened or refreshed. 
User-added imageIf the Show Feed is not clicked earlier
User-added image
and if you open or refresh the record and click on Show Feed, then the File link still appears. Below is the screenshot
User-added image
Can some please tell me what is wrong here.

Thanks,
khan