Forum Replies Created
-
AuthorPosts
-
George
ParticipantHey Josh,
Thanks for reaching out.
I am a bit confused here as we have never had a folder named “tribes” in any of our plugins.
With that in mind, I would recommend accessing your site’s wp-content/plugins folder directly over FTP and doing the following things:
1. Delete any existing copies of The Events Calendar and Events Calendar Pro. This will NOT delete any event data, but I would recommend backing up your site beforehand anyways just to be safe.
2. Download a fresh copy of The Events Calendar from here → http://wordpress.org/plugins/the-events-calendar
3. Install that fresh copy of The Events Calendar on your site and activate the plugin.
4. Any issues?
5. If not, then download a fresh copy of Events Calendar Pro from here → http://theeventscalendar.com/my-account/downloads
6. Install that fresh copy of Events Calendar Pro on your site and activate the plugin.
7. Do any issues persist?
Let me know what you find! 😀
Thanks,
GeorgeGeorge
ParticipantHey Matthew,
Thanks for reaching out.
In explaining your findings, you pose this question:
Is the TEC plugin reliant on a script dependency called “jquery?”
☝️ YES — jQuery is a JavaScript library that many, many plugins and themes require to be loaded. This script is included by default in WordPress, and it is very bad practice to ever “deregister” this built-in copy of jQuery.
There may be one specific JavaScript issue happening, and so I would recommend trying to find out that specific issue instead of throwing out jQuery altogether.
I am happy to help find out what that error is!
1. To help us do that, can you first please post your site’s system information? Here is how to do so → https://theeventscalendar.com/knowledgebase/sharing-sys-info/
2. Next, please deactivate ALL PLUGINS on your site except for just The Events Calendar, Event Tickets, and any premium add-ons you may have for these, like Events Calendar Pro or Event Tickets Plus. Leave your theme active.
3. Then, remove ANY scripts from your theme that you have added that alter the version of jQuery being loaded.
4. Finally, once your site is in this state, leave it in this state and share a link to a page on your site where The Events Calendar is not working.
☝️ Once your site is in the state of #4 here, I will look at the issue firsthand and see if I can spot the exact problem.
I know that it’s inconvenient to leave your site in this state! But I can assure you I will work as quickly as possible to minimize the amount of time you have to leave your site in this state….
Thanks,
GeorgeGeorge
ParticipantHey Jordan,
Thanks for elaborating on your needs a bit more here. We unfortunately don’t have any offerings that would facilitate a literal automatic posting between sites; but we do have a premium add-on called Events Aggregator coming soon.
This will allow you to “listen” to updates to calendars on one site, and have them automatically pulled into another site on a regularly-scheduled basis.
You can learn more and sign up to get notified when this gets released here → https://theeventscalendar.com/wordpress-event-aggregator/
Cheers,
GeorgeGeorge
ParticipantSure thing! 😀
I’ll close this thread for now, but wish you the best of luck with your project.
Cheers,
GeorgeOctober 3, 2016 at 10:05 am in reply to: Creating Featured Events in Customized Weekly View #1171846George
ParticipantHi Drew,
Customizing the display of weekly view events—or really any “view” of events—is possible, but unfortunately only by way of custom coding.
I say “unfortunately” there because we cannot help with custom coding, nor can these forums be used a place to solicit assistance with custom coding from other folks.
When it comes to customizing calendar views, I would recommend a few things:
- Our Themer’s Guide — It covers the basics of customizing calendar views, so if you are willing to tinker with code a bit you can use this to make it a bit easier to modify code. Check out the guide here → https://theeventscalendar.com/knowledgebase/themers-guide/
- Our Customizations resources page — a page full of resources for customizations if you want to hire someone to implement custom coding for you. Check that out here → http://theeventscalendar.com/customizations
Now despite what I said above about our no-customizations policy, we do try to share custom code if we can write a quick little snippet that helps. So, in regards to your second question about hiding recurrences from weekly views, I addressed this and shared a code snippet for you in your other thread on that topic here → https://theeventscalendar.com/support/forums/topic/excluding-recurring-events-from-the-week-widget/
Cheers,
GeorgeGeorge
ParticipantHey Nicole,
Sorry to hear about this!
Are you downloading the files in the Safari browser? If so, Safari by default will un-zip zip files!
So, I would recommend downloading from a different browser. Alternatively, you could try disabling the auto-unzip feature of Safari…
Here is how to do that → http://apple.stackexchange.com/questions/961/how-to-stop-safari-from-unzipping-files-after-download
If you’re not using Safari, let me know!
GeorgeGeorge
ParticipantHey Dave,
Are you referring to shortcodes from The Events Calendar and Events Calendar Pro specifically? If so, what issues do you currently run into when you try using multiple shortcodes per page?
There should not be an issue using multiple shortcodes per page.
To be clear, these are the only shortcodes our plugins provide → https://theeventscalendar.com/knowledgebase/pro-widget-shortcodes/
☝️ If you are referring to any shortcode that is not specifically on that page, then it is not one we make or support — let me know!
— George
George
ParticipantHey @Drew,
This would unfortunately only be possible with some custom coding, and is a bit tricky to do; however, I wrote up a quick code snippet here for you that might do the job:
add_filter( 'tribe_events_pro_this_week_widget_query_args', 'tribe_prevent_recurring_instances_from_this_week' );function tribe_prevent_recurring_instances_from_this_week( $args ) {
$args['post_parent'] = 0;
return $args;
}☝️ Add that to your site and let me know if it helps!
Cheers,
GeorgeGeorge
ParticipantHey Jordan,
Thanks for reaching out.
There are several ways of migrating WordPress content in general, and events content in particular. There are two main ways that are simple, free and well-documented in these following two articles:
• Method One: https://theeventscalendar.com/knowledgebase/using-wordpress-export-tools-to-migrate-events-content/
• Method Two: https://theeventscalendar.com/knowledgebase/using-the-events-calendars-csv-importer/☝️ Check out these methods and let me know if there are any other questions I can try to help with!
Sincerely,
GeorgeOctober 3, 2016 at 9:40 am in reply to: Can Facebook Events pull in events from multiple Facebook Pages? #1171829George
ParticipantHi @th,
Thanks for reaching out!
YES — I am happy to say that you can definitely import events from multiple Facebook Pages into the one main events calendar. 😀
Please let me know if there are any other questions I can try to help with.
Sincerely,
GeorgeGeorge
ParticipantGood question, Karly!
tribe_related_posts_args_limiter() is not actually a filter you can use.
tribe_related_posts_args_limiter() is the callback function in the snippet above—meaning that the code is basically saying, “when the tribe_related_posts_args filter happens, run the function called tribe_related_posts_args_limiter.”
That tribe_related_posts_args_limiter() function in the snippet above is what modifies the various query arguments in the related events function.
So, if you were trying to modify how related events were found, you would write your own callback function like this:
function karlys_custom_related_events_function( $args = array() ) {// Get the Event ID.
$post_id = get_the_ID();// Get the existing terms of the custom taxonomy on the event.
$event_terms = wp_get_object_terms( $post_id, 'karlys_custom_taxonomy', array( 'fields' => 'ids' ) );// Reset the tax query so that it's not looking for tags and event cats.
$args['tax_query'] = array( 'relation' => 'OR' );// Make a new tax query saying, "get other events with the same custom taxonomy terms as this one."
$args['tax_query'][] = array(
'taxonomy' => 'karlys_custom_taxonomy',
'field' => 'id',
'terms' => $event_terms,
);// Return the filtered arguments.
return $args;
}add_filter( 'tribe_related_posts_args', 'karlys_custom_related_events_function', 10, 1 );
☝️ This code example also demonstrates modifying the taxonomy parameters to use a custom taxonomy like you mentioned. 😉 It’ll take some tinkering, but I hope this serves as a helpful “template” for your customizations here!
Cheers,
GeorgeGeorge
ParticipantThanks for the images, Luciana! Sorry I missed that discrepancy on my first look. 😀
Try adding the following CSS to the bottom of your theme’s style.css file:
body.post-type-archive-tribe_events div.footer-widget:first-of-type {
margin-left: 0;
margin-right: 5%;
width: 45% !important;
}body.post-type-archive-tribe_events div.footer-widget {
margin-left: 5%;
width: 20% !important;
}
☝️ It’s not absolutely exactly the same layout as the “working” footers, so you can play around with the various percent values in the code above if you want to tweak the width of things. But this should help!
Cheers,
GeorgeGeorge
ParticipantEvents Aggregator will not be bundled with any products. It is a separate product and requires buying its own license.
All you need for Events Aggregator is The Events Calendar 4.3 (which will launch before Events Aggregator), and then an Aggregator license key. Once you plug in your Aggregator license key where appropriate in The Events Calendar 4.3 and above, the Aggregator features will activate inside your site’s wp-admin
— George
George
ParticipantHey Craig,
Unfortunately it’s not easily possible to modify the appearance of the attendees lists in its printouts. You would have to manually write some extensive code—PHP and CSS both—to reduce the number of columns and to adjust how much space they take up.
I’m sorry to bear this news. I do have a list of customization resources you can refer to if you are keen modifying the attendees list printouts → http://theeventscalendar.com/customizations
In regards to this specific thread, @wineschool has not posted in over two weeks so I will close up this thread and consider this topic “closed”.
If you have further questions or issues, no worries! Open a new thread any time and we will respond promptly.
— George
George
ParticipantThis reply is private.
-
AuthorPosts
