-
Author
-
March 6, 2015 at 00:05 #48884JohnParticipant
I am wanting to disable “Clients, Portfolio and Testimonials” post types. Don’t need them for a project I am working on and I don’t want them in the admin.
I am using a child theme but I am not sure how to accomplish this without editing the main theme-functions file.
Any help would be greatly appreciated.
Thanks,
John
Attachments:
You must be logged in to view attached files.March 6, 2015 at 15:35 #48980RaduModeratorHello JohnMcLearran,
Here is your solution
Add this snippet to your kleo-child/functions.php
COPY CODEfunction hide_menu_items() { remove_menu_page( 'edit.php?post_type=kleo_clients' ); remove_menu_page( 'edit.php?post_type=kleo-testimonials' ); remove_menu_page( 'edit.php?post_type=portfolio' ); } add_action( 'admin_menu', 'hide_menu_items' );
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 6, 2015 at 15:47 #48985JohnParticipantThat is awesome!
I had tried going through the WordPress Codex(as well as many other options) to remove parent theme options thru child theme and had no luck…
Thanks!
March 6, 2015 at 18:15 #48997RaduModeratorYou are welcome!
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 13, 2015 at 23:16 #68090pandreas82ParticipantAnd what about if we would like to remove these selections from wordpress ‘+New’ horizontal menu?
Is there any custom code for this?
Thank you in advance!
Regards,
Andreas
July 14, 2015 at 20:21 #68262RaduModeratorYou refer about the top black admin bar ?
Regards
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 16, 2015 at 16:13 #68596RaduModeratorGo to Wp-ADmin -> Theme Options -> Miscellaneous -> Admin Toolbar -> set OFF
Regards
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.