-
Author
-
October 18, 2016 at 20:19 #140120
Jan
ParticipantHow to add the “Theme General Settings”, Before Content, After Content, Page Attributes to custom post types?
I installed the Hero Knowledgebase Plugin (https://herothemes.com) and would like to be able to control the page rendering in the same way as for post/pages. For instance:
- The Title of each article is apparently switched off / invisible. I would like to switch it on.
- I need Before and After Content Boxes
- Ideally, the Sidebar Field (which is visible) would be set to a certain value for new posts
October 19, 2016 at 10:15 #140226Laura
ModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 19, 2016 at 20:15 #140348Radu
ModeratorHi,
Add this function to wp-content/thems/kleo-child/function.php
COPY CODE// Add Theme Settings to CPT // // Replace yourCPTslug with your CPT slug // function my_cpt_sq_metabox_general_settings($post_types) { $post_types[] = 'yourCPTslug'; return $post_types; } add_filter('sq_metabox_general_settings', 'my_cpt_sq_metabox_general_settings');Replace yourCPTslug with your cpt slug
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionOctober 20, 2016 at 18:20 #140532Radu
ModeratorYou’re welcome
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Bugs & Issues’ is closed to new topics and replies.