Posts

Showing posts with the label script will hide all the SharePoint default icons in the ribbon

Hide default share point icon from ribbon

hides all focus, share settings follow every thing $(document).ready(notRequiredElement); function notRequiredElement() {     $("a[id$='_share_button']").css("display", "none");     $("a[id$='_SyncPromotedAction']").css("display", "none");     $("a[id$='_follow_button']").css("display", "none");      $("a[id$='_SiteActionsMenu']").css("display", "none");       $("a[id$='_TopHelpLink']").css("display", "none");       $("a[id$='_fullscreenmodeBtn']").css("display", "none"); } hides about me & personalize this page <style>                      .ms-core-menu-list li:first-child{  display: none; } .ms-core-menu-list li:last-child{  display: none; }                     </style> hides t...