Forum Replies Created
-
AuthorPosts
-
July 29, 2014 at 3:50 pm in reply to: Download Failed on update from 3.6 to 3.7 WooCommerce Tickets #534443
Barry
MemberI’m sorry to hear that.
It’s possible there is a file permissions issue or – in some cases – the hosting environment impedes communication with our own server and that could be behind this, too.
Would updating manually work for you? You can grab .zips of any plugins you have a license for over here:
Let me know if that helps!
Barry
MemberHi!
Week view has been changed to start at whatever the earliest start time is in a given week.
When I look at the URL you shared it seems you have an event that starts at five minutes passed midnight, which would explain this.
Does that clarify things at all?
July 29, 2014 at 3:02 pm in reply to: use additional fields in community add-on to make event private #534384Barry
MemberHi – great question!
You could listen out for the creation of events (or even for them being updated) by using WordPress’s save_post_{post_type} hook, in this case that would look like:
save_post_tribe_eventsFrom there you would need some logic to test and see if the user’s intent was to make it private or not – possibly by inspecting the $_POST superglobal (you may also want to add some other safety checks into the mix) and then update the post status accordingly.
It’s a bit beyond the scope of support here on the forum to go much further with a customization like this one but hopefully that outlines the basic mechanics – from here we’ll need to leave the rest to you π
Barry
MemberHi!
Looks like you’ve already got a few custom CSS rules in place relating to your event templates and you could probably add this one into the mix, too:
#tribe-events .tribe-events-event-meta.vcard span { display: inline }Alternatively you could create a custom tribe-events.css stylesheet (details here) and add the rule there, instead.
Does that help?
Barry
MemberHi – sorry you’re experiencing difficulties.
The logic in Jonah’s snippet for detecting the three single post views you detailed ought to do the trick, ie:
if ( tribe_is_event() && is_single() ) { // Single Events echo 'were on a single event page'; } elseif ( tribe_is_venue() ) { // Single Venues echo 'were on a single venue page'; } elseif ( get_post_type() == 'tribe_organizer' && is_single() ) { // Single Organizers echo 'were on a single organizer page'; }Possibly though something else is getting in the way. Can you share – via Pastebin, Gist or some similar service – the actual code you have in place, within the context of the relevant template?
Barry
MemberHi!
You could definitely override one of our templates – depending on where you want to implement this – and make use of some of our template tag functions such as:
Which button exactly are you thinking of changing? Is it the one that appears in list view?
Barry
MemberHi: I’ll log that for further review, I can see how it may not be the very best screen size for that behaviour π
In the meantime, you could drop the screen size at which this kicks in by following these steps:
Would that help, at least as a temporary workaround?
Barry
MemberThat is odd.
The first thing I’d like to check on is if another plugin – or your theme – might be conflicting. Can you try deactivating everything except for:
- The Events Calendar
- Events Calendar PRO
- Filter Bar
And additionally switch to a default, unmodified theme such as Twenty Thirteen and let me know if this persists?
Assuming it does not continue at that point, can you start reactivating everything and test at each stage to see if the problem has returned (this might help to figure out what exactly is conflicting, if indeed there is a conflict).
Thanks!
Barry
MemberHi – I’m sorry you’re hitting difficulties here.
Are you positive that event is recurring? Normally I would expect to see a link reading Recurring Event (See all) – translated of course – but that doesn’t seem to be present.
Ivβe try with Twenty Twelve theme and itβs still the same.
Thanks for giving that a try π
Can you confirm if, at the same time, you also disabled all other plugins except for The Events Calendar and Events Calendar PRO – and did that make any difference?
Thanks!
Barry
MemberPlease do feel free to make a feature request – we’d love to hear from you π
An alternative approach though could be to add a stylesheet to your theme (tribe-events/filter-bar.css perhaps) and set it up with the following snippet – which you might add to your theme’s functions.php file:
add_action( 'wp_enqueue_scripts', 'add_filter_bar_stylesheet', 100 ); function add_filter_bar_stylesheet() { $custom_stylesheet_path = get_stylesheet_directory_uri() . '/tribe-events/filter-bar.css'; wp_enqueue_style( 'custom_filter_bar_stylesheet', $custom_stylesheet_path ); }The slight advantage this would give you is that you would not need to dequeue the existing Filter Bar stylesheet or copy its rules across to your custom version (which would arguably be a more future-proof way of handling this).
I hope that helps and please do post a feature request π
Barry
MemberOK. I wonder if something else might be impacting.
What if you deactivate all other plugins (except for The Events Calendar and Eventbrite Tickets) and additionally switch to a default, unmodified theme such as Twenty Thirteen.
Does it work as expected under those conditions?
July 29, 2014 at 9:23 am in reply to: Single event listing template override- suggestions on re-ordering #533171Barry
MemberHi!
Unless you’re sharing something confidential like user logins it is generally best to avoid using private replies – it means others with similar questions in the future won’t be able to see the discussion in its entirety. Also, the forum is – as you can probably tell – not the very best place to share code so, particularly for longer snippets, sharing them via Pastebin, Gist or some similar service is often better π
Almost. So the additional fields show up in the single event view, but not in the full event list.
Right – by default they don’t show up there – but you could try adding that same line of code before into your custom list/single-event.php template:
TribeEventsPro::instance()->single_event_meta->additional_fields();Does that help?
July 29, 2014 at 9:19 am in reply to: Calendar Widget links not working, even after applying the usual fix #533154Barry
MemberAwesome, glad we got there!
I’ll go ahead and close this topic since it sounds like everything is now sorted – but if anything else crops up that we might be able to help with please do go ahead and create a new topic and one of the team will be happy to help π
Also, if you have a moment, we’d love to hear your thoughts on The Events Calendar over on our review page. Thanks again!
Barry
MemberPleasure!
I’ll go ahead and close this topic – but if any other questions crop up that we might be able to assist with definitely do feel free to create new topics as needed and one of the team will be only too happy to help π
Also, if you have a moment, we’d love to hear your thoughts on The Events Calendar over on our review page. Thanks again!
Barry
MemberExcellent, glad that helped!
I’ll go ahead and close the topic at this point but if this crops up again please don’t hesitate to let us know (and reference this thread) and we’ll see if there is anything we can investigate to help make automated updates function as expected … sometimes that isn’t possible due to various hosting constraints, but we could definitely explore a few ideas.
Any way, thanks for checking in and good luck with everything else π
-
AuthorPosts
