Forum Replies Created
-
AuthorPosts
-
Nico
MemberHey Mat,
Thanks for reaching out to us, I’ll help you getting this right ๐
The fix you found in Josh’s reply should work for you (just tested it locally and it does work for me), I can imagine two things getting in the way here:
- Theme already has a template override: check inside your theme folder if this file exists ‘your_theme/tribe-events/wootickets/tickets.php’. Other way to test for this is to change the theme to WordPress default TweentyFifteen.
- Caching: try to flush all cache in your site and then check back again!
Please let me know if any of these solutions work for you,
Best,
NicoOctober 23, 2015 at 3:28 pm in reply to: Show Year on Event Page Even if Event in Current Year #1017499Nico
MemberHey Josh,
Thanks for confirming this, I guess that would be shown pretty much everywhere the event date is shown: all widgets, all main event views, single event views, etc. I don’t have such a list but you can search for all occurrences of the function ‘tribe_events_event_schedule_details’ in the plugin folder. I guess you are not abusing the field, it just the config for how the date of events taking place in the current year is shown. Maybe the label of the field ‘date without year’ seems to suggest the year shouldn’t be there, but that’s you call.
Please let me know if I can help you with anything else,
Best,
NicoNico
MemberHey Henk,
Thanks for clarifying that!
Testing this locally with ‘Nederlands’ site language I see the link for the widget: ‘View all events’ > ‘Bekijk alle Evenementen’ and the ‘Find out more’ > ‘Meer weten’. So it seems to be working for me.
Can you try to re-download the plugin and follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.
Hope that fixes the issue for you,
Best,
NicoOctober 23, 2015 at 1:28 pm in reply to: Organizer Name Already Exists / Venue Name Already Exists when it does not #1017435Nico
MemberHey Jim,
Thanks for sending over the URL! I’ve tested the on your site and I could narrow down this down to the a back-end issue (apparently). Everything looks good on the ajax call but the ‘check for existing venue/organizer’ function is always returning ‘0’ which means that there’s an existing venue/organizer with that name. The function runs a SQL to check on this, so I guess the error might be with the query itself, Can you check the server error logs for any clues on this?
Thanks again for your patience, hope we can get this right soon,
Have a great weekend,
NicoNico
MemberCristina,
Thanks for following up on this! You can upload the screenshots to cloudup.com, imgur.com or any other image sharing service and paste the link in here. If you want you can mark your reply as private.
Before you share the screenshots for the event and settings details… Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.
Please let me know about the result of the test. If the issue is still present sending over the screenshots will help me to try to reproduce this on my end and confirm if it’s a bug or not.
Have a great weekend,
NicoNico
MemberWell Dj,
First of all thank you very much for testing this out! You have done an amazing work here ๐
So the only difference between the test site and the live site is the theme? Can activate the theme and then check if the auto-import generate duplicates? That way we could narrow this down to the theme (or be mostly sure about it).
I guess the blank images error might be a temporary glitch and not a bug itself?
Thanks once again,
NicoNico
MemberThomas,
Just found this snippet that Brian crafted for changing the category slug, I guess this shouldn’t be necessary in your case as this should work as excepted, but please give it a try and let me know if this solves your issue:
https://gist.github.com/jesseeproductions/762f784476f555469d11
Change the slug for the one you need!
Please let me know if this gets it right,
Best,
NicoNico
MemberVaughn,
Thanks for clarifying this for me, I get you know!
No, unfortunately there are no settings in the plugin to achieve exactly that. I guess it’s not impossible but that will need some custom code to override the re-write rules and some testing to get it right. For example this snippet by Brian let’s you change the category slug:
https://gist.github.com/jesseeproductions/762f784476f555469d11
So you can have something like http://overallname.com/events/organsation/3/ without much coding effort. But again this solution requires some coding on your side and cannot be achieved via settings.
Please let me know if this answers your question,
Best,
NicoNico
MemberHey Brian,
Thanks for following up and sorry for the miss understanding here!
If you are able to build a conditional to indicate the ‘title’ text you can surely re-use some of the code in the snippet and have something like:
...
if ( $page_id == 0 ) {if ( tribe_is_list_view() ) {
$title = 'Future List Events';
} else if ( tribe_is_month() ) {
$title = 'Future Month Events';
} else if ( tribe_is_day() ) {
$title = 'Future Day Events';
} else if ( is_singular( Tribe__Events__Main::POSTTYPE ) && ! tribe_is_showing_all() ) {
$title = 'A Single Event';
} else {
// catch non calendar views
$title = '404';
}
}
...
Other option is to perform a check by post_type, for example:
if ( get_post_type() == Tribe__Events__Main::POSTTYPE ) {
$title = 'Events';
}
Please let me know if any of those suggestions work for you,
Best,
NicoNico
MemberThis reply is private.
Nico
MemberStocked to help you out Sebastien ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHey MilanOS,
Thanks fro jumping in here. Just tried locally and I think I’m seeing it too but not sure about the different between these two language options: https://cloudup.com/ckEkEAsNPjD, Can you tell me which one is the correct?
Please let me know about it so I can confirm this and make some additional test to see if this is a bug or not,
Thanks,
NicoOctober 22, 2015 at 11:24 am in reply to: WP_Router in Breadcrumb (Community Events + Yoast WP SEO Breadcrumbs) #1017022Nico
MemberHey Jimmy,
Thanks for your patience on this, and also for opening a new thread for the slow queries issue ๐
Barry crafted a snippet to solve the issue you are experiencing, please give it a try and let me know how it goes:
https://gist.github.com/barryhughes/c529b764f3ab3924cfc6
Best,
NicoNico
MemberHey Dj,
Thanks for keep me posted on this… Just wanted to let you know I’m following here, let’s see how the last test goes!
So far the fault has not happened again and the only variable is that I didnโt tick the boxes & trigger an immediate population of events on the import facebook page of TECโฆ.Maybe that is the key???
At this point just testing this out will lead us to an answer ๐ Is this what test #7 is about?
Cheers,
NicoOctober 22, 2015 at 11:09 am in reply to: Events /settings/Advanced Template Settings – (blog links not showing) #1017016Nico
MemberHi Pete,
Thanks for following up on this! I’ve removed your site credentials (please mark you reply as private next time) as we are not allowed to log into client sites and make changes.
I couldn’t reach the URLs you shared so not sure about what you are trying to achieve. Also while I can help you getting it right, I cannot craft the customization for you.
One thing that might be useful while trying to integrate events within pages (or posts) are PRO widget shortcodes which basically will enable you to easily embed ‘mini calendar’ or other widgets in your content.
On the other hand to integrate content into the calendar view you can perform a template override (be sure to check our Themer’s guide for detials on how to do this) of the view you want to insert content in (for example month view, single events view or just all views).
Please let me know if these tips help you getting started or if you still need more help,
Best,
Nico -
AuthorPosts
