Forum Replies Created
-
AuthorPosts
-
Nico
MemberHi there,
Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.
We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.
Best,
NicoNico
MemberHi there,
Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.
We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.
Best,
NicoNico
MemberHi there,
Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.
We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.
Best,
NicoMay 4, 2016 at 5:51 am in reply to: 404s in event calendar events when Woothemes Sensei plugin is enabled. #1110383Nico
MemberHi there,
Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.
We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.
Best,
NicoNico
MemberHi there,
Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.
We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.
Best,
NicoNico
MemberHey folks,
Thanks for the patience! I’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5).
Can you try to downgrade Sensei to version 1.9.4 and re-test this? We are making contact with the Sensei team to solve this!
Please let me know about this,
Best,
NicoNico
MemberThis reply is private.
Nico
MemberHi David,
Thanks for reaching out! Interesting strategy to get cleaner URLs 🙂
This article gives a nice overview: Beginner’s Guide to Creating Redirects in WordPress. I don’t see any aspect of this that might be different you the URL’s generated by our plugin.
Please let me know if this answers your question,
Best,
NicoNico
MemberHey @edebex,
Thanks for reaching out to us! I’ll help you here, but first let me say that editing the language file (.po) is not recommended as your changes will be overwritten with plugin updates. There’s a really handy plugin to do this safely: Say What?.
Now regarding the string for Free not translating there, I’m not sure why that happens. If you decide to use the above mentioned plugin it might work, if not you can use the followin snippet (just paste it in your theme (or child theme) functions.php file):
/*
* Change the Free ticket label
*/
function change_free_label ( $cost, $post_id, $with_currency_symbol ) {if ( $cost == 0 || $cost == "" || $cost == "Free" ) return 'gratuit';
}
add_filter('tribe_get_cost', 'change_free_label', 20, 3);
Please let me knows if any of those solutions work for you,
Best,
NicoNico
MemberHey Malcolm,
Thanks for following up!
I gave the code a try, just changed the eventDisplay to upcoming (as it made more sense) and the code seems to be working for me. The snippet below will output the next upcoming event before the events template (you can see this in the list view for example) in the front-end:
function get_next_event ( ){
// Retrieve the next event or meal
$specials = tribe_get_events( array(
'posts_per_page' => 1,
'tax_query'=> array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'mole'
)),
'start_date' => current_time( 'Y-m-d g:i' ),
'eventDisplay' => 'upcoming',) );
print_r($specials);
}add_action ( 'tribe_events_before_template', 'get_next_event');
If you are checking the events start time / end time be sure to check the site timezone is the same as your 😉
Please let me know if this works for you,
Best,
NicoNico
MemberHi J.P.,
Thanks for reaching out and for you interest in our products 🙂
We have an add-on called iCal Importer that let’s you import events from Google Calendar. You can set up recurring imports to keep up with new events added.
Please note this doesn’t mean that both calendar will be synced. For example: if you delete an event in Google Calendar that was previously imported it won’t be deleted in the WordPress site. Also if you create a new event in your WordPress site it won’t be pushed to the G Cal.
Do you think this might work for your project?
Best,
NicoNico
MemberHi Patrick,
Thanks for reaching out to us! I’ll help you here…
Regarding the customization you mention, I’m not sure how you can get the correct link there, maybe there’s a filter to alter the output of the link? Regarding permalinks our plugin options just limit to changing the event slugs (event/events).
Events Calendar PRO includes a mini calendar widget which is very similar to the WordPress Calendar Widget but works just for events. I guess this might be the solution.
Please let me know if this answers your question,
Best,
NicoNico
MemberHi there Bas,
Thanks for reaching out!
When I buy and install the ticket sales plugin will I keep the products/add to cart functionality or will everything turn into a ticket sales process?
Yes! The experience with the e-commerce plugin should be the same.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHi Matthew,
Thanks for getting in touch!
Is this something that becomes available with the pro version?
No, but it’s something you could achieve via a snippet / some custom code. Check out the code in this reply by Cliff: https://theeventscalendar.com/support/forums/topic/can-i-create-a-ical-feed-sync/#dl_post-1024051
Please let me know if there’s anything else I can do for you,
Best,
NicoNico
MemberHi Tribella,
Thanks for adding your voice! As stated above the dev team is looking into this issue, we still don’t know about possible solutions. As soon as I have some more news to share I’ll do so here.
The fix for this is scheduled for next maintenance release coming out next week, but we still didn’t have much time to look into it. As usual this are the planned dates and depending on the complexity of the issue it might take a little longer, hopefully not!
Best,
Nico -
AuthorPosts
