Tagged: Avia Layout Editor, enfold theme
Hello Enfold Team,
Using the Enfold theme on another site development. The site is using ‘The Events Calendar’ plugin. I am trying to add a full width banner above the calendar, so the page has a similar appearance to the rest of the pages.
I tried copying and pasting the html from another page. The result was a banner that was not full width. The reason is that html before (inserted via Events Calendar settings panel) inserts that html inside the Events Calendar plugin. The URL of this page is below so you can see what I’ve done and how it looks; to see how I want it to look view any other pages, except the homepage which has a different layout.
Enfold doesn’t seem to have a widget in the Avia editor so that I can set up a page with the layout I want, and then add the calendar. So, I suppose that should go in a feature request post.
As always, thanks in advance for any guidance/solution you can offer.
Hey rlhinirv57,
Thank you for the inquiry.
You can use the “ava_after_main_container” action hook to insert additional content after the header or the main title container. Example:
add_action('ava_after_main_container', function() {
echo "SOMETHING HERE";
});
Best regards,
Ismael
Thank you, Ismael!