Viewing 3 replies - 1 through 3 (of 3 total)
  • You could certainly adapt the Events List widget to display a specific category and embed that (it should be possible to use it even outwith a sidebar if you’re familiar with WP coding) or else you could build a custom query using tribe_get_events() and display pretty much whatever you want ??

    Hope that helps!

    Tech4Eleven

    (@tech4eleven)

    I did this and it works perfectly. I registered a new sidebar by adding code such as

    register_sidebar(array(
        	'name' => __('UNIQUIESIDEBARNAMEHERE', 'quest'),
        	'id' => 'UNIQUIENAMEHERE',
        	'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-inner">',
        	'after_widget' => '</div></section><div class="clearfix"></div>',
        	'before_title' => '<div class="widget-title bd_headings_text_shadow">',
        	'after_title' => '</div>',
      	));

    in my functions.php file. NOTE, copy the information for everything under ‘id’ above from your theme’s sidebar code in functions.php to make your new sidebar act the same.

    then after that, add the “event list” widget to this sidebar in widgets and leave the title blank (if you want) but add how many events you wanna show. then, install this plugin : https://www.ads-software.com/plugins/widget-instance/

    go to your page and looks for the new puzzle piece icon and choose your widget: see these screenshots for reference: https://www.ads-software.com/plugins/widget-instance/screenshots/

    it worked perfectly for me.

    Barry Hughes

    (@websitebakery)

    Thanks for sharing Tech4Eleven!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Embed a list of events on a page or post?’ is closed to new replies.