Advertisement
DidouS

20221207-SL-hide certain themer layout options for editor

Dec 7th, 2022 (edited)
801
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.54 KB | None | 0 0
  1. add_action( 'admin_footer' , 'hide_bb_logic_root_and_builder_locations' );
  2.  
  3. /**
  4.  *  callback to hide the logic rules and unwanted builder locations
  5.  *  make sure an administrator still sees the options
  6.  *
  7.  * IMPORTANT: please take note that a clever user can still open up inspector and disable the styles
  8.  *              and the options will show up again.
  9.  */
  10. function hide_bb_logic_root_and_builder_locations() {
  11.     $current_user = get_current_user_id();
  12.     $userdata = get_userdata( $current_user );
  13.     if ( in_array( 'administrator' , $userdata->roles ) ) return;
  14.    
  15.     echo '<style>' .
  16.             '#bb-logic-root {display: none;}' .
  17.             'ul[id*="select2-fl-theme-builder-location"] li[aria-label] { display: none; }' .
  18.             'ul[id*="select2-fl-theme-builder-exclusion"] li[aria-label] { display: none; }' .
  19.             'li[id*="select2-fl-theme-builder-location"]:not([id*="select2-fl-theme-builder-location-objects"]):not([id*="\"id\":\"page\""]) { display:none;}'.
  20.             'li[id*="select2-fl-theme-builder-exclusion"]:not([id*="select2-fl-theme-builder-exclusion-objects"]):not([id*="\"id\":\"page\""]) { display:none;}'.
  21.             'ul[id*="select2-fl-theme-builder-location"] li[aria-label="Pages"],' .
  22.             'ul[id*="select2-fl-theme-builder-location"] li[aria-label="false"] { display: unset; }'.
  23.             'ul[id*="select2-fl-theme-builder-exclusion"] li[aria-label="Pages"],' .
  24.             'ul[id*="select2-fl-theme-builder-exclusion"] li[aria-label="false"] { display: unset; }'.
  25.     '</style>';
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement