Hi guys.
I just updated the theme and now for my custom post type, I no longer see the dropdown for layout that allows me to pick the sidebar and layout options, and it’s gone from the ‘screen options’ up top. Help?
FYI, I’m using the “Types – Complete Solution for Custom Fields and Types” plugin.
Thanks!
Camille
Hi camtay!
Install our child theme, http://kriesi.at/documentation/enfold/downloads/, and then add this to the functions.php file of the child theme.
add_filter( 'avf_builder_boxes', 'enfold_customization_posts_builder' );
function enfold_customization_posts_builder( $b ){
$b[1]['page'] = array( 'portfolio', 'page', 'post', 'custom' );
return $b;
}
And replace “custom” with the slug of your custom post type.
Best regards,
Elliott
Wonderful! Thank you very much!