Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Internal Links

    (@internallinkjuicer)

    Currently we do not provide a possibility for that.

    I put your request to our backlog with high priority and we will try to publish a related setting to that in the near future.

    By now I set this topic here to “resolved” and I will keep you updated when there are any news.

    Up Voted for that

    Remove “linkindex” from the WP admin top bar

    use this

    /*Remove “linkindex” from the WP admin top bar*/
    #wp-admin-bar-ilj{display: none !important;}

    • This reply was modified 1 year, 2 months ago by ateya3d.

    to hide link in wp-admin use this in functions.php

    // customize admin bar css
    function override_admin_bar_css() { 
    
       if ( is_admin_bar_showing() ) { ?>
    
    
          <style type="text/css">
            #wp-admin-bar-ilj{display: none !important;}
          </style>
    
       <?php }
    
    }
    
    // on backend area
    add_action( 'admin_head', 'override_admin_bar_css' );
    
    // on frontend area
    add_action( 'wp_head', 'override_admin_bar_css' );
    Plugin Contributor Internal Links

    (@internallinkjuicer)

    Thank you for your patience.

    We have just released v. 2.1.2, which includes the option you requested to disable our ILJ admin bar on the top bar.

    You can do it here: https://prnt.sc/iHOcLYMABeRv

    If you have any questions or need help with your upgrade, don’t hesitate to reach out to us.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove “linkindex” from the WP admin top bar’ is closed to new replies.