Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Tali,
No, the above script is not a plugin, it’s just a PHP script with some MySQL sprinkled in to help migrate events from one plugin to another. In order to get the script to execute you create a page titled “Migrate” and then add the script code to your theme’s page.php template. Then, you visit that page on your website and the script will run. You won’t see anything else happen, but if you look at your database you will see the changes made. Like I mentioned above it’s a real raw script and should be used with caution. You should definitely make a backup of your database before running it and you might need to run the script a couple times, adjusting some of the MySQL code to get things to work right with your setup. It was meant to migrate events from the old EC3 plugin so you’ll need to figure out how the plugin you want to migrate from stores events (what database table) and adjust the code accordingly.
Hopefully that provides a little more clarification and will help you to get this working in your setup. Unfortunately we cannot provide any further support for the above script so use it at your own risk.
– Jonah
Jonah
ParticipantHi Kirsten,
I just tried importing the event and it worked fine for me. Try creating and inputting a Facebook App ID as instructed here: https://theeventscalendar.com/how-to-create-a-facebook-app-id/
Let me know whether or not that works.
Thanks,
JonahJonah
ParticipantHi Jamal,
Do you have a page I can look at where the issue is happening?
– Jonah
Jonah
ParticipantHi Darius, the only solution as of now is the one provided by Barry in this thread: https://theeventscalendar.com/support/forums/topic/single-day-view-displaying-past-day-events/
Aside from that we will be fixing the issue in 3.0.
I hope that helps but let me know if you need anything else.
– Jonah
Jonah
ParticipantHi Alyssa,
At this time our plugin does not have this feature but we are including a map view in 3.0 which is coming out in the near future. Until then you’ll need to figure out something else.
Let me know if you have any other questions,
– JonahJonah
ParticipantHi Adam,
Any slider plugin that supports custom post types should work and if it doesn’t you can always code your own and query for the ‘tribe_events’ post type.
I hope that helps but let me know if you have any other questions.
– Jonah
Jonah
ParticipantHi Anthony,
You can use:
if( has_term( 'category-slug-here', 'tribe_events_cat' ) ) {
// do something
}
Does that help?– Jonah
Jonah
ParticipantHi Darius, sounds good, let us know if there’s anything else we can do for you.
– Jonah
November 30, 2012 at 8:16 am in reply to: problems with plugin "2 Click Social Media Buttons" #28766Jonah
ParticipantHi Anne,
I’m happy to hear that. Let us know if theres anything else we can help you with.
– Jonah
Jonah
ParticipantHi Nico,
Ok, apparently we do have some issues with how we are handling multi day cutoffs and these will be fixed in 3.0. For now I would suggest referencing this thread which provides some possible fixes: https://theeventscalendar.com/support/forums/topic/single-day-view-displaying-past-day-events/
I hope that helps!
– Jonah
Jonah
ParticipantHi Emily,
That’s strange… Can you provide me WP admin access to your site so I can take a look myself? Please email to pro [at] tri [dot] be, reference this thread and attn. it to me. I’ll need to test switching off all other plugins and reverting the theme too so please be aware that I’ll be doing this.
Thanks,
JonahJonah
ParticipantHi Darius,
You’ll want to first query the category using get_terms() (http://codex.wordpress.org/Function_Reference/get_terms) and then your posts query within that. Here is a sample of some code that should help you: http://snippi.com/s/3a1eh1q
I hope that helps!
– Jonah
Jonah
ParticipantI see two events for Dec. 14th and when I click either one of them, the dates on the single event pages looks fine too. I need more details about what the actual issue is or an example of how to reproduce to be able to troubleshoot this further.
Thanks,
JonahJonah
ParticipantYou’re welcome. Yeah and there’s lots of other examples. Here’s another one using the featured image: http://bigseadesign.com/blog/set-facebook-thumbnail-in-thesis
Jonah
ParticipantHi Chris,
This has nothing to do with our plugin and is something you will need to work out in your theme. There are a number of posts on the net about setting the Facebook image in WordPress. Here is one: http://www.terabug.com/set-default-image-for-facebook-share-wordpress/
You can check specifically for single event pages by using:
if( tribe_is_event() && is_single() ) {}
Does that help?– Jonah
-
AuthorPosts
