Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #332859

    Wordpress 4.0
    Enfold 3.0.1

    Avia Layout Builder is missing on Portfolio Post edit pages. Only the header is showing and appears to be collapsed, however the downward pointing arrow indicates it should be expanded.

    #333353

    Hey hpham45!

    Login credentials do not seem to work. Can you please check them once again?
    Please also try de-activating all active plugins and check if that helps

    Cheers!
    Yigit

    #333392
    This reply has been marked as private.
    #333483

    We were able to fix this by rolling back to Enfold 2.9, so it wasn’t caused by WordPress 4.0.

    • This reply was modified 10 years, 1 month ago by hpham45.
    #333486

    Hey!

    Version 2.9 is likely to cause issues with WordPress 4.0. If possible, please create a testing environment and try installing WordPress 4.0 and Enfold 3.0.1 via FTP – http://vimeo.com/67209750
    As far as i know, there is not any other user having the same issue

    Cheers!
    Yigit

    #333562

    It may be because we use a custom post type. All of our trouble was with those particular posts. The theme seemed to overwrite the admin menu for the custom post type, and Avia was broken on any post with that type. Strangely the posts were still accessible by typing the direct admin url “..wp-admin/edit.php?post_type=portfolio” to get to them.

    How detrimental is the incompatibility with 2.9? 3.0 didn’t appear to work with custom post types, which is apparently essential to our site.

    #334165

    Hi!

    How did you add the custom post types? Add this on functions.php:

    add_theme_support('add_avia_builder_post_type_option');
    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true );
    	$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low');
    	$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' );
    	
    	return $boxes;
    }

    Append the name of the custom post type on these line:

    'page','post', 'portfolio'
    

    Best regards,
    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.