Title: Hide Help section
Last modified: August 30, 2016

---

# Hide Help section

 *  Resolved [neo110](https://wordpress.org/support/users/neo110/)
 * (@neo110)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/hide-help-section/)
 * Hi Mr. Nivi Jah,
 *  I want to hide “help” section below howdy…
    Is it possible with your plugin?
 *  Please add this feature in your plugin.
 * Thanks,
 * [https://wordpress.org/plugins/admin-branding-and-tweaks/](https://wordpress.org/plugins/admin-branding-and-tweaks/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [nivijah](https://wordpress.org/support/users/nivijah/)
 * (@nivijah)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/hide-help-section/#post-6314503)
 * I don’t think that many people are going to use this feature so I won’t get it
   into the plugin.
 * That being said, you can totally do this by yourself, here how :
 * method 1 :
    go into the plugin folder /css/agent-admin-style.css add this rule
   and save:
 *     ```
       div#contextual-help-link-wrap {
         display: none;
       }
       ```
   
 * Note that this will be removed if you update the plugin in the future.
 * method 2:
    go in to your theme folder and open styles.css add the same rule and
   save. Note that this will be removed if you update or replace a theme in the 
   future It is better to do this in a child theme if you are working with one.
 * method 3:
    go into your functions.php and add this rule:
 *     ```
       // Hide admin help tab
       function hide_help() {
           echo '<style type="text/css">
                   #contextual-help-link-wrap { display: none !important; }
                 </style>';
       }
       add_action('admin_head', 'hide_help');
       ```
   
 * Note that this will be removed if you update or replace a theme in the future
   
   It is better to do this in a child theme if you are working with one.
 * Good luck
 *  Thread Starter [neo110](https://wordpress.org/support/users/neo110/)
 * (@neo110)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/hide-help-section/#post-6314519)
 * Hi,
    thanks for your valuable answer.
 *  This feature usefull in multivendor ecommerce website. Admin hide this from 
   vendor-user role login panel.
 *  This feature may be added functionality in your plugin.
 *  Regards,

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide Help section’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/admin-branding-and-tweaks_5e98a0.
   svg)
 * [Admin Branding and Tweaks](https://wordpress.org/plugins/admin-branding-and-tweaks/)
 * [Support Threads](https://wordpress.org/support/plugin/admin-branding-and-tweaks/)
 * [Active Topics](https://wordpress.org/support/plugin/admin-branding-and-tweaks/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/admin-branding-and-tweaks/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/admin-branding-and-tweaks/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [neo110](https://wordpress.org/support/users/neo110/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/hide-help-section/#post-6314519)
 * Status: resolved