Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #283273

    Hi,
    Enfold allows you to visually design static pages, but I want a way to design the layout of the Single Post blog page. How can you do that? The Advanced Layout Editor only appears on static pages. If I design a static Blog page and use it to show the blog, then it shows ALL posts. I want to design the layout of the Single Post. Thanks!

    #283299

    Hey Bob!

    Try adding this at the very end of your theme functions.php file:

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

    Cheers!
    Josue

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