Forum Replies Created
-
AuthorPosts
-
Nico
MemberHey Mao, thanks for confirming this π
As always glad to help! If you need anything else don’t hesitate to open a new topic in the forums.
Cheers,
NicoNico
MemberHey Vaughn,
Thanks for jumping in here! I’ll try to clarify this, but not sure what you mean by:
So not filtering one events page to show a single category β but different events pages for each category.
What would be the difference in each ‘different events page for each category’? Maybe you can elaborate a bit more in what you are looking to achieve here?
Thanks,
NicoOctober 21, 2015 at 2:13 pm in reply to: Problem with next event button, previous event button, and events list widget #1016724Nico
MemberHi Laureen,
Thanks for reaching out and sorry this is still an issue for you π I’ll try to help you here!
First of all, we try to keep just one issue per thread, this way different issues can be addressed by different team members simultaneously. It also makes finding solutions easier for other users searching the forum. So if you could open up a new thread for the event list widget issue that would be great. I’ll help you with pagination issues here.
Is it possible for me to deactivate, uninistall and reinstall the events calendar and events calendar pro, or would I then lose all my events data?
No you won’t lose any of the data in your site. In fact re-installing would be a great starting point as you confirmed that you already tested for conflicts.
Unfortunately we are not allowed to log in and make changes to client sites at all π
Please re-install the plugins and let me know how that goes,
Best,
NicoOctober 21, 2015 at 1:58 pm in reply to: Show Year on Event Page Even if Event in Current Year #1016713Nico
MemberHi Josh,
Thanks for reaching out. I’ll help you with this one!
So not sure why changing the setting for ‘Date without year’ won’t work for you, it seems to be the same as commenting the lines in the plugin. Are you looking to change this just for single events? If that’s the case you can do a template override of the single event template and replace the function call for some custom code in the template. You can check the details for that on our Themer’s guide.
Please let me know if this solution makes sense and if you need more details on how to achieve the override,
Best,
NicoOctober 21, 2015 at 1:04 pm in reply to: Organizer Name Already Exists / Venue Name Already Exists when it does not #1016687Nico
MemberHi Jim,
Sorry to hear re-installing the plugin had no effect on this π Unfortunately I’m still not able to reproduce this on my end.
Have you imported the Organizers/Venues from a CSV or other source? By any chance have you created an Organizer/Venue with empty name?
Can you share the site URL in a private reply? Is it possible to access the submit form anonymously? I would like to take a look to it, maybe some clue shows up.
Thanks for your patience on this,
Best,
NicoNico
MemberHey Jay,
Thanks for reaching out to us, and sorry to hear about this performance issue you are experiencing.
I reviewed the 3.12.4 changelog and I don’t see any potential performance impacting changes in there. Mostly bug fixes.
Can you access the server’s error log? Maybe we can see something prompting there… I also see you are running a cache plugin, have you tried disabling it to test 3.12.4? Can you test this in a staging server or local instance?
Please let me know about this,
Best,
NicoNico
MemberGlad to hear Sebastien!
You can filter the output of the ‘tribe_events_week_day_header’ function which generates that string. Try adding the following snippet to your theme’s functions.php file (located at wp-content/themes/your_theme/):
add_filter( 'tribe_events_week_day_header', 'format_week_date' );
function format_week_date ( $html ) {
$html = str_replace( 'th', '', $html);
$html = str_replace( 'st', '', $html);
$html = str_replace( 'nd', '', $html);
$html = str_replace( 'rd', '', $html);
return $html;
}
That should do the trick, please let me know if it does!
Best,
NicoNico
MemberHey Dj,
Thanks a lot for the heads-up on this… Keep me posted on your findings please!
Best,
NicoOctober 21, 2015 at 9:12 am in reply to: +VAT after ticket price in list view not displaying after Avada update #1016604Nico
MemberGlad to hear Carl π
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 Kirret,
Thanks for confirming it! Yeap, they might have further info but for the nature of the error be sure to check with your server admin as well.
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.
Hope you can find a solution for this soon,
Best,
NicoNico
MemberThis reply is private.
Nico
MemberHey Doug,
Thanks for following up on this! Sorry to hear about that Doug. Look into the original bug report there are no theme/plugin patterns about where this might be coming from.
@DJ, do you think you can set up a test site for this? If any of you guys has cPanel (or similar software) on your hosting provider, there might be the option to create a 1-click WordPress install which comes in handy for setting up this test site.
Please let me know if you can do so @DJ,
Thanks,
NicoNico
MemberHey Sarah,
That’s great! Personally, I found that Say What? plugin is a pretty solid option for this task as it’s pretty lightweight and theme-independent as well. But sometimes is better to add a snippet and not a plugin for a small task as this one, anyway that’s your call!
I’ll leave this thread open until you can confirm this is solved π
Cheers,
NicoNico
MemberHey Thomas,
Thanks for following up on this, and sorry to hear re-generating the site’s permalinks didn’t fixed the issue for you π
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.
It would also be great if you could share your system information with me so I can check if everything looks right on that end. Please mark your reply as private if you do so.
Best,
NicoNico
MemberHey Luke,
Thanks for clarifying, I was completely miss-understanding your request here, sorry for that!
Please give this snippet a try and let me know if it does the trick now:
add_filter( 'default_title', 'events_default_title', 10, 2 );
function events_default_title( $title , $post ) {
if( $post->post_type == 'tribe_events' ) {
$title = "Pre-set title for events";
}
return $title;
}
Cheers,
Nico -
AuthorPosts
