Tagged: avia layout builder, Wordpress 4.0
-
AuthorPosts
-
October 9, 2014 at 3:52 am #332859
Wordpress 4.0
Enfold 3.0.1Avia 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.
October 9, 2014 at 5:14 pm #333353Hey 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 helpsCheers!
YigitOctober 9, 2014 at 6:43 pm #333392This reply has been marked as private.October 9, 2014 at 11:35 pm #333483We 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.
October 9, 2014 at 11:38 pm #333486Hey!
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 issueCheers!
YigitOctober 10, 2014 at 1:33 am #333562It 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.
October 11, 2014 at 7:19 am #334165Hi!
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 -
AuthorPosts
- You must be logged in to reply to this topic.