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

    Hi,

    I just got ENFOLD so I’m new to the Forum.

    I created a new page where I plugged EVENTS CALENDAR in. First, as soon as I want to edit the new page, Avia Layout Architect is not applicable. Second, changing from STANDARD EDITOR to ADVANCED LAYOUT EDITOR, all boxes and templates are easily put in, whereas not visible on the view modus. What exactly am I missing?

    Thank you very much & kind regards!

    Juan Carlos

    #1427095

    Hey juancarloszeta,

    Thank you for the inquiry.

    The Advanced Layout Builder (ALB) is not available for events pages by default, so you have to activate it manually. However, we don’t recommend doing this because not all calendar features such as the maps or the calendar itself will be available when ALB is active. If you want to continue, try to add this code in the functions.php file.

    /* 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);
    

    Best regards,
    Ismael

    #1427210

    Hi Ismael,

    Hello Ismael,

    Thanks for the quick reply and the recommendation to use ALB when creating a new page!

    Even if ALB is not activated for the page, I can still switch from the Standard Editor to the Advanced Editor and work with ALB.

    I have installed the Events Calendar exactly according to the instructions in this link and it works perfectly:

    However, what no longer works on this page is the insertion of a photoslide or any other building block. As soon as I am in the Advanced Editor (basically ALB) I can insert the blocks (photoslide, template), but they do not pop up in view mode, they are just ignored.

    Thanks in advance for any feedback and best regards!

    #1427302

    Hi,

    Thank you for the update.

    Thanks for the quick reply and the recommendation to use ALB when creating a new page!

    You may have misunderstood our previous reply. We don’t recommend using the ALB for the events pages because default features will not work when the builder is active. Please stick to the classic or default editor when creating events. This should fix the issues you’re currently having including the issue with the photoslide or featured image.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.