FAQ
-
How to limit Zombify post types for specific user roles?
You will need to add below code in boombox-child/functions.php
add_filter( 'zf_activate_for_roles', 'my_activate_for_roles' ); function my_activate_for_roles( $active_for_roles ) { $active_for_roles['administrator'] = array( 'openlist', 'rankedlist' ); $active_for_roles['editor'] = array( 'openlist', 'rankedlist' ); return $active_for_roles; }
-
# Why do I have 2 of the same images in a single post?
By default in the Boombox theme system shows featured image inside single post and in case if you are adding featured image and adding the same image in the content you will have two same images inside the post. For hiding second image from your single post go to Dashboard ▸ Appearance ▸ Customize ▸ Single Post and disable switcher for Featured Media.
The other option is that you can leave that trigger on, and do not upload same image in content.