Tagged: advanced layout builder
Hi,
I just installed the Events Calendar PRO plugin by Modern Tribe:
How do I activate Advanced Layout Builder in events?
Thankyou
Alessio
Hey aledef,
Try adding this code at the bottom of your functions.php:
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'][] = 'tribe_events'; /*custom post*/
}
}
return $metabox;
}
Hope it helps.
Best regards,
Nikko
It worked,
thankyou!
Hi aledef,
Glad that we could help :)
Feel free to create a new thread if you need further assistance.
Thanks for using Enfold and have a great day!
Best regards,
Nikko