Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Missing Avia Layout builder for some posts #1348448

    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;
    }
    in reply to: Unable to create new widget area #1346472

    I got it – thank you for all your help!!

    in reply to: Unable to create new widget area #1346359

    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)

    in reply to: Unable to create new widget area #1345957

    I resent the credentials in the private section.

    in reply to: Unable to create new widget area #1345815

    Sent info to get into the test site we have set up for this.

    in reply to: Unable to create new widget area #1345761

    No, that doesn’t show on the dashboard at all.

Viewing 6 posts - 1 through 6 (of 6 total)