Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #376005

    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

    #376466

    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

    #377115

    Wonderful! Thank you very much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘'Layout' accordion in custom post type missing’ is closed to new replies.