Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Staurt,
I was able to import this event just fine. Make sure you have an Eventbrite API key input in your user profile settings first. Go to this URL to retrieve yours: https://www.eventbrite.com/userkeyapi/?ref=etckt
Let me know whether or not that helps.
– Jonah
May 27, 2013 at 9:53 am in reply to: Error: 400 importing live events from eventbrite to WordPress #49862Jonah
ParticipantHi osoosaar,
Sorry to hear about the trouble here. So you are saying that the event actually does get imported but you are still getting the error? Do you get this error with all events? Can you supply me with some event id’s so I can test it out on my end? Have you tried deactivating all other plugins to rule out a plugin conflict?
Thanks,
JonahJonah
ParticipantHi Steve,
Often times this is caused by the theme loading in an older or newer version of jQuery than what WordPress would load. I would take a look at that and see if you can prevent it from loading this alternate version. The version it should load is 1.8.3
– Jonah
Jonah
ParticipantHi Brian,
Not that I know of and it’s not really within the scope of the support we can provide here. You’ll need to figure it out on your own or hire someone to help you. Good luck!
– Jonah
Jonah
ParticipantHi Brian,
Unfortunately no, we do not have a template that will allow you to embed a calendar on any page. It’s something a fair amount of people want to be able to do though and I would suggest casting your vote for it here: http://tribe.uservoice.com
Regards,
JonahJonah
ParticipantHi Nicole,
I’m going to move this to the Community Events calendar forum where someone will be able to help you there.
– Jonah
Jonah
ParticipantHi jonathanbahai,
Not sure what could be going on. It could be a bug with the beta or perhaps an older version that didn’t have something working correctly. I would suggest emailing pro [at] tri [dot] be and requesting the latest beta code to test out. If it’s still not working with the latest code it could be a theme or plugin conflict which would be helpful to know for our beta testing efforts so if you could report back on what you find that would be great!
– Jonah
Jonah
ParticipantHi Steve,
Try this code for adding the tax_query:
$args = array(
'post_type' => array(TribeEvents::POSTTYPE),
'posts_per_page' => 10,
'post_status' => 'publish',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => '_EventStartDate',
'value' => array(
date('Y-m-d H:i:s', strtotime('now')),
date('Y-m-d H:i:s', strtotime('+16 weeks'))),
'compare' => 'BETWEEN',
'type' => 'DATETIME'
),
array(
'key' => '_EventEndDate',
'value' => array(
date('Y-m-d H:i:s', strtotime('now')),
date('Y-m-d H:i:s', strtotime('+16 weeks'))),
'compare' => 'BETWEEN',
'type' => 'DATETIME'
)
),
'tax_query' => array(
array(
'taxonomy' => TribeEvents::TAXONOMY,
'field' => 'slug',
'terms' => array('2012'),
'operator' => 'IN'
)
)
);
Jonah
ParticipantHi harbingers,
Yeah it’s a bit involved. Basically you first need to figure out what template you are using for our plugin first by visiting Events > Settings > Template. Then, based on that I can give you some more instruction. Let me know what you’ve got set there and we can go from there.
– Jonah
Jonah
ParticipantYou’re welcome Frank, let us know if you need help with anything else.
– Jonah
Jonah
ParticipantHi usscishe,
Try adding this to your functions.php file: https://gist.github.com/jo-snips/5636467
– Jonah
Jonah
ParticipantHi srsackman,
Have tried reverting to the default WordPress theme? It could be a conflict with your theme… And, are you running the latest version of both Pro and core (2.0.11)? I’ll need wp-admin access to your site so I can take a look and verify things for myself. Can you post those here privately please?
Thanks,
JonahJonah
ParticipantHi Christina,
It could be due to a conflict with another plugin but more likely a too out of date version of our plugin, that it has trouble connecting to the update server. I would suggest manually downloading and updating the plugin and then you should see the license key fields like before. Let me know if not or if you need any help manually updating.
– Jonah
Jonah
ParticipantHi Frank, yes it should be fixed in 3.0. For now try changing your timezone from a city to a UTC time.
– Jonah
Jonah
ParticipantHi jonathanbahai,
I don’t believe the pro beta will work with 2.0.11 core. You should also have the 3.0 beta for the core plugin. Once you have that installed you should see the calendar widget show up as the “Events Calendar” under Appearances > Widgets.
Does that help?
– Jonah
-
AuthorPosts
