Hello,
3 short questions actually on blog posts:
– I tried to put a LayerSlider at the top of my blog posts, but it appears like a normal image, and does not go full screen. How can I fix this?
– I chose the option “Hide Both” for Title and Breadcrumbs, but the title still shows up above the slider. How can I get rid of it?
– I´d like to have the Meta to appear at the bottom of th epost. Is that possible?
Many thanks for your help, and best regards,
Olivier.
Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
Josue
Hey Olivier!
You’ll have to enable the Layout Builder in Posts in order to have fullwidth elements working, try adding this to your functions.php:
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'), 'context'=>'normal', 'expandable'=>true );
$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('portfolio', page', 'post'), 'context'=>'side', 'priority'=>'low');
$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('portfolio', page', 'post'), 'context'=>'normal', 'priority'=>'high' );
return $boxes;
}
After you done that build your blog posts with the Advanced Layout Builder (you’ll need to add the comments element at the bottom).
Best regards,
Josue