Welcome! To use this support forum, please Login or Join Today!
You are here → Home :: Forum Home :: WordPress Themes Support :: Synapse WordPress Theme :: Thread
Trying to use Eventbrite plugin but it’s not working correctly with the Synapse theme
Hi Casey,
I am trying to integrate the Eventbrite plugin with my website using the Synapse theme (I have previously used it with Breeze successfully) but the plugin is causing the theme to display incorrectly (text shifted over to the left hand side of the screen). Also at the moment the actual event information doesn’t seem to be getting populated on the website page :(
The support for the plugin suggests posting on the theme forum with this link: https://github.com/Automattic/eventbrite-api to see if your theme provider can ensure the theme is compatible with the Eventbrite plugin - so is there anything you can suggest that may be contributing to the problem I am seeing?
The page where the event information should be getting displayed is: http://www.happytailstraining.co.uk/group-classes-and-events/
Best regards
Barrie
Actually ignore the page on my website that I have included as I am switching to using the single event code direct from Eventbrite for now so that I can get this working quickly… So I have created a temporary page for now with the Eventbrite plugin enabled: http://www.happytailstraining.co.uk/events-2/
Hi Barrie,
Does the plugin render itself via shortcode or does it have its own template(s)? Any chance you could PM me with a temporary wp-admin username/password so I can take a look. I think that’d be much faster than trying to replicate everything you have locally.
Hi Casey,
It’s configured as a template. I will set up an admin username & password and PM them to you now
Before your events will display, you’ll need to setup the Keyring connection per the plugin docs.
Once that’s done, you’ll need to add Eventbrite theme support to your child theme in functions.php:
function synapse_child_setup() { /** * Add support for Eventbrite. * See: https://wordpress.org/plugins/eventbrite-api/ */ add_theme_support( 'eventbrite' ); } add_action( 'after_setup_theme', 'synapse_child_setup' );
Lastly, you’ll need to add the templates to your child theme as well:
Extract these files into a new directory located at wp-content/themes/synapse-child/eventbrite
http://cl.ly/1M2z0p3N0A1H
Sorted, thanks Casey