Hi
We tryed to use the Advanced Layout Builder with The Events Calendar.
For that we added the following code into the functions.php:
/* Advanced Layout Builder für The Events Calendar aktivieren */
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = 'tribe_events';
return $supported_post_types;
}
add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
/* Advanced Layout Builder für The Events Calendar aktivieren */
function avf_metabox_layout_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = 'tribe_events';
return $supported_post_types;
}
add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);
Unfortunately, when we activate the Advanced Layout Builder for an event, we don’t see the additional informations like the map anymore.
What we have to do for that we would see everything like with the normal WordPress Builder?
Best regards
Mike
Hey Michael,
Thank you for the inquiry.
When ALB (Advanced Layout Builder) is active, all default elements in the page or post will be removed, as a different template will be applied, essentially creating a blank canvas. Because of this, we do not recommend activating ALB for special custom post types like events.
Best regards,
Ismael
Hi Ismael
Ok, thanks for your response.
So it is not a good idea to use the ALB with The Events Calendar.
You can close this issue.
Best regards
Mike