Forum Replies Created
Viewing 6 posts - 1 through 6 (of 6 total)
-
AuthorPosts
-
Thank you that seemed to work, but I already had the following two filters in functions.php. Should I keep those in there still?
/* to support displaying custom post types */ add_theme_support('add_avia_builder_post_type_option'); add_theme_support('avia_template_builder_custom_post_type_grid'); /* to display advanced portfolio setting */ 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( 'portfolio ', 'page ', 'post ', 'user_guide'), 'context '=> 'normal ', 'expandable '=>true ); $boxes[] = array( 'title ' =>__( 'Layout ', 'avia_framework ' ), 'id '=> 'layout ', 'page '=>array( 'portfolio ', 'page ', 'post ', 'user_guide'), 'context '=> 'side ', 'priority '=> 'low '); $boxes[] = array( 'title ' =>__( 'Additional Portfolio Settings ', 'avia_framework ' ), 'id '=> 'preview ', 'page '=>array( 'portfolio ', 'user_guide'), 'context '=> 'normal ', 'priority '=> 'high ' ); return $boxes; } /* add advanced layout editor to user guide custom post type */ add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'user_guide'; } } return $metabox; }
I got it – thank you for all your help!!
There are never notifications to update the theme. Is there a manual process for this?
Theme Updates
No Updates available. You are running the latest version! (4.7.6.4)-
This reply was modified 3 years, 2 months ago by
CascadeEnergy321.
I resent the credentials in the private section.
Sent info to get into the test site we have set up for this.
No, that doesn’t show on the dashboard at all.
-
This reply was modified 3 years, 2 months ago by
-
AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)