Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1412366

    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

    #1412386

    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

    #1412397

    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

    #1412436

    Hi,

    Thanks for the update, I’ll go ahead and close this thread for now then. Please open a new thread if you should have any further problems or questions.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Advanced Layout Builder with The Events Calendar’ is closed to new replies.