I have installed the events calendar (link below) but I am unsure how I can add a LayerSlider to every single page within the events calendar.
Any help would be appreciated.
Hey Luke86!
Thank you for using Enfold.
Unfortunately, you can’t add the layer slider for single events page. You can use the shortcode wand to add other shortcodes like the Easy Slider or Content Slider.
Best regards,
Ismael
Can I not add some code that will show the same transparant header on ALL events pages?
Hey!
This option is also not available for events pages but if you can give us a screenshot on how you want the single events page to look like, maybe we can help. For further modifications, please visit Envato Studio or Werkpress.
Best regards,
Ismael
Hi Ismael,
Sorry for the delay in responding.
Basically my site has a transparent header and the Layer Slider appears behind my logo and menu.
I am looking to implement a similar header on the events pages. The same slider can be used on ALL events pages.
Cheers,
Luke
Hey Luke!
You can enable ALB + Avia Meta Boxes (transparent header, sidebar, footers, etc) by adding this to the theme / child theme 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', 'tribe_events'), 'context'=>'normal', 'expandable'=>true );
$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('portfolio', 'page', 'tribe_events'), 'context'=>'side', 'priority'=>'low');
$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('portfolio', 'page', 'tribe_events'), 'context'=>'normal', 'priority'=>'high' );
return $boxes;
}
Best regards,
Josue