Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1337166

    We updated the Events Calendar and Enfold this morning and are having some compatibility issues that we hope you can help with! We’ve tested plugin and theme conflicts and think we have narrowed down the source to Enfold.

    In The events calendar plugin, there is a setting to “Enable updated designs for all calendar views” – With enfold activated, the display on a single event is still the old display with the event meta information to the left. With Twenty twentyone theme activated, the event meta information is in the correct place for the setting, below the event description.

    Thank you so much for your help in looking into this!

    #1337201

    Hey bimsenfold,

    Thank you for the inquiry.

    The theme actually overrides the single event template, so what you see is the template modification from the theme with the event meta information displayed on the left. If you want to disable the template modification, just add this code in the functions.php file.

    remove_action( 'tribe_events_template', 'avia_events_template_paths', 10, 2 );
    

    You can also declare the avia_events_template_paths function again to negate the override.

    function avia_events_template_paths( $file, $template ) {
         return $file;
    }
    

    Best regards,
    Ismael

    #1337326

    Thank you for your response! The first option worked great.

    The calendar buttons on the single events are also formatted a little strangely with what looks like an extra icon and inconsistent padding. Is this an Enfold conflict, as well?

    An example link is below.

    #1337422

    Hi,

    Thank you for the update.

    Glad to know that the first option worked. Regarding the button, it doesn’t look like an issue with the theme, but you can try and disable the css files that the theme is using to override the single view layout. Please add this in the functions.php file.

    
    function avia_events_register_assets( $styleUrl ) {
    		return false;
    }
    

    Best regards,
    Ismael

    #1337552

    Thank you – I’ll play around with that some more.

    Appreciate the quick replies, feel free to mark this as resolved!

    #1337662

    Hi,

    Alright. Let us know if there is anything that we can help you with, closing this one for now.

    Have a nice day.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Events Calendar Display Error’ is closed to new replies.