Title: Hide
Last modified: July 23, 2018

---

# Hide

 *  Resolved [bonfanticonsulting](https://wordpress.org/support/users/bonfanticonsulting/)
 * (@bonfanticonsulting)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/)
 * I want hide Super Social Option when a member write a new post (at the end of
   new post page)
 * I use Adminimize but in the article section is not able this option.
 * How possible hide it?
 * Thanks
 * Dario B

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

 *  Plugin Author [Heateor Support](https://wordpress.org/support/users/heateor/)
 * (@heateor)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/#post-10528217)
 * Hi Dario,
 * You can add following code in the functions.php file of your active theme:
 *     ```
       /**
        * Remove meta options for non-admin users
        */
       function my_remove_meta_boxes() {
       	if ( ! current_user_can( 'manage_options' ) ) {
       		$post_types = get_post_types( array( 'public' => true ), 'names', 'and' );
       		$post_types = array_unique( array_merge( $post_types, array( 'post', 'page' ) ) );
       		foreach($post_types as $type){
       			remove_meta_box( 'the_champ_meta', $type, 'advanced' );
       		}
       	}
       }
       add_action( 'admin_init', 'my_remove_meta_boxes' );
       ```
   
 * We will include this in the upcoming release of the plugin.
 *  Thread Starter [bonfanticonsulting](https://wordpress.org/support/users/bonfanticonsulting/)
 * (@bonfanticonsulting)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/#post-10528890)
 * [@heateor](https://wordpress.org/support/users/heateor/) Thanks For Reply and
   Solution.
 * It work! In the next release add this code but add checkbox for ability or no
   it too.
 * Thanks a lot again.
 * Your are greats!
 *  Plugin Author [Heateor Support](https://wordpress.org/support/users/heateor/)
 * (@heateor)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/#post-10529360)
 * No problem. If you could leave a review [https://wordpress.org/support/plugin/super-socializer/reviews/](https://wordpress.org/support/plugin/super-socializer/reviews/),
   would be much appreciated 🙂
 *  Thread Starter [bonfanticonsulting](https://wordpress.org/support/users/bonfanticonsulting/)
 * (@bonfanticonsulting)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/#post-10534252)
 * I leave a review.Thanks again for all. Great!
 *  Plugin Author [Heateor Support](https://wordpress.org/support/users/heateor/)
 * (@heateor)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/#post-10535552)
 * Thanks for the review 🙂

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

The topic ‘Hide’ is closed to new replies.

 * ![](https://ps.w.org/super-socializer/assets/icon-128x128.png?rev=1866723)
 * [Social Share, Social Login and Social Comments Plugin - Super Socializer](https://wordpress.org/plugins/super-socializer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/super-socializer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/super-socializer/)
 * [Active Topics](https://wordpress.org/support/plugin/super-socializer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/super-socializer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/super-socializer/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Heateor Support](https://wordpress.org/support/users/heateor/)
 * Last activity: [7 years, 10 months ago](https://wordpress.org/support/topic/hide-18/#post-10535552)
 * Status: resolved