Forum Replies Created
-
AuthorPosts
-
Barry
MemberHi Wayne,
Well, it may be worth simply removing it in that case and see what happens π
It’s hard to pin down exactly what’s happening – there’s an amount of “noise” created by some of the issues I described in my last reply and while on the surface they may not appear to relate directly the first error I see when I view the single event page URL you provided is a type error in tribe-events.js:
TypeError: c.fn.datepicker.noConflict is not a functionIt would be best to clear everything up and resolve each of these issues in order to quickly zero in on other problems – such as the spinner not disappearing and your supersized background loading – but, short of that, dequeuing or removing jquery-ui like you suggested might be the fastest way to deal with this π
Barry
MemberHi – thanks for reposting in this forum – it’s genuinely appreciated π
Was your issue essentially the same as that described by Pamela Mulka in the same thread? Are you able to login via yoursite.com/wp-login.php (rather than …/wp-admin or …/wp-admin.php)?
Barry
MemberGlad you sorted it out π
Mostly for the benefit of other users coming across this thread, please remember it’s generally recommended that you do not modify core plugin code: any changes will be overwritten on the next update (so you’ll need to manually restore them) – and, on occasion, we have seen situations where users forgot about such modifications resulting in strange side effects that were hard to track down.
So long as you’re fully aware of this and it works for you though that’s the main thing – thanks for posting the update and I hope everything else goes smoothly for you.
Barry
MemberAwesome – happy to help π
I’ll go ahead and close this thread in that case – and, if you have a moment to spare, we’d love to hear your thoughts on The Events Calendar on our review page. Thanks!
July 12, 2014 at 11:18 pm in reply to: Continue displaying events until after they're over (or have been over a week) #365311Barry
MemberHmm, well, I guess I’m just not clear on quite what you’re envisioning. For example, in month view: if today’s date was 1st August would you expect the calendar grid to start with the last week of July (28th July perhaps) and carry on to include the entire month of August?
Or do you see this as a straightforward list that might appear before the calendar grid?
Let’s say it’s the latter, since that’s fairly easy, you could obtain an array containing all events in a given timeframe with some code like this:
// Get a list of events taking place within a specific // timeframe - you would need to add logic to calculate // the correct start/end dates $events = tribe_get_events( array( 'eventDisplay' => 'custom', 'start_date' => '2014-07-06', 'end_date' => '2014-12-12' )); // Then display them however makes sense for your use case foreach ( $events as $event ) echo $event->post_title;Of course there is still quite a lot to flesh out there (perhaps you wouldn’t always want to display this list in month view, if for example we’re already half way through the month). To learn more about customizations in general I’d definitely also recommend scoping out our Themer’s Guide.
I hope that helps – really though this is something that is definitely going to be a fairly bespoke customization and we’ll have to leave you to determine the details and final implementation π
Barry
MemberI’ll go ahead and close this thread since I think everyone should be sorted at this point – with that in mind staff will no longer monitor this for further replies and if you need any further help it would be best to create new threads. Thanks!
Barry
MemberHi!
A great place for any custom CSS is a tribe-events.css stylesheet, which would live in a location something like this:
wp-content/themes/YOUR_THEME/tribe-events/tribe-events.css
Full details can be found in our Themer’s Guide – I hope that helps π
July 12, 2014 at 10:58 pm in reply to: Recurring events not posting to calendar and info's are being changed #365244Barry
MemberHi – I’m sorry to hear you are facing difficulties.
Please do understand we try hard to stick to one issue per thread – so let’s focus on the problems with recurrence right now – if you still need help with Google Calendar or anything else please create additional threads for those and one of the team will be only too happy to help π
The first thing I notice when I view your event pages is that they have been customized quite a bit – can you confirm if these are customizations that you have implemented, or did a designer do this for you (or did the theme ship with custom event templates)?
Looking at month view for July I see a recurring event running every week Mon-Fri so it looks like this was working as expected at least for one event.
Can you confirm which event in particular didn’t behave as expected and also share a screenshot of the recurrence settings for that event? Though you can’t upload screenshots directly to the forum, if you upload them to a service like Dropbox or even to your WordPress site you can then share the link.
Thanks!
Barry
MemberHi!
You may wish to set up a custom tribe-events.css stylesheet – this would basically live within your theme (wp-content/themes/YOUR_THEME/tribe-events/tribe-events.css) and the following snippet should remove the white background:
.single-tribe_events #tribe-events-content form.cart, .single-tribe_events #tribe-events-content div.cart { background: inherit; }You may want to augment this with further rules to make other bits of text more legible:
#tribe-events-content .cart td.tickets_name, #tribe-events-content .cart td.tickets_price { color: white; }Does that help? Please also note you can find more details about setting up a tribe-events.css stylesheet in our Themer’s Guide π
Barry
MemberHi!
I think you’d be better off with a straight UPDATE statement rather than trying to embedΒ it within a SELECT.
The general form you are looking for is going to be something like this and you can find out more by looking through the MySQL docs:
UPDATE database.wp_postmeta SET meta_value = "something" WHERE ( post_id = 12345 AND meta_key = "_thumbnail_id" );I hope that helps!
Barry
MemberHi!
I wonder if this could relate to caching. Do you have (or have you previously) used a caching plugin, even if it is now deactivated? If so can you clear the cache and see if that helps?
If perhaps you already removed it can you reach out to the plugin author and find out how to totally remove it (as sometimes the effects of caching persist even after the caching plugin itself has been deactivated).
Of course, if that’s not the answer please just let me know and we can take things from there – thanks!
Barry
MemberHi!
You can clear licenses listed on the license management page by hitting the disconnect now link for those you wish to get rid of – would that help here? You could if you wished disconnect them all, then visit the license tab (within the events settings screen in your WordPress installation) and reconnect so that the correct URL is listed.
It sounds though like it shouldn’t be a problem in any case – if you’re only using the license for one site and that site is listed then, even if additional URLs are also present, everything including automated updates should continue to work as expected.
Let me know if that’s at all unclear π
Barry
MemberHi!
Definitely feel free to upvote this feature request – and do checkout the plugins mentioned in the comments on that page as they may give you a means of achieving this π
I hope that helps!
Barry
MemberHi – interesting question. The actual pin marker data can be modified by setting up a filter using the tribe_events_ajax_response hook.
The marker data is basically an array of arrays – and each inner array represents a particular point on the map: it would be a bit of an advanced customization, but you could for instance alter the tooltip title in each to include the date – check out the threads linked to from this forum reply:
I hope that helps!
Barry
Memberβ¦oops, this post should be in the Events Calendar PRO forum. Can we move it?
No problem – I moved it across (the topic URL should remain the same, however).
They are multiplied up to 10 times on the same day, and of course show up in the events list in the WP dashboard. I can delete them, but it is too many to do manually. (think 2500)
Do you know if this happened after a recent update? If so, might the cleanup plugin linked to from this blog post help?
-
AuthorPosts
