Forum Replies Created
-
AuthorPosts
-
Brian
MemberOk sounds good.
Let me know.
Cheers
Brian
MemberHi,
Thanks for using our plugins. I can try to help out here.
We are not supporting the REST API until the rest of the endpoints are merged into core.
So I will try to help out, but I am limited in what I can do.
Since all our meta fields are protected (they start with _ ) by default the REST API ignores them.
I think this will work to unprotect the fields:
/**
* THe Events Calendar - Remove Protected Custom Meta for REST API
*/
add_filter( 'is_protected_meta', function( $protected, $meta_key ) {
if ( '_EventStartDate' == $meta_key || '_EventEndDate' == $meta_key || '_EventDuration' == $meta_key || '_EventVenueID' == $meta_key && defined( 'REST_REQUEST' )&& REST_REQUEST ) {
$protected = false;}
return $protected;
}, 10, 2 );
That is only a 4 of the fields, these two resources have more:
https://theeventscalendar.com/knowledgebase/wordpress-post-meta-data/
https://gist.github.com/jesseeproductions/c2df90a56827dae990a0
Once you do that you can utilize it more as in this guide:
This thread might help too:
I can try to help out more, but limited in supporting this until we add it into our plugin.
Thanks
February 19, 2016 at 9:53 am in reply to: *I figured this out* How to Import Google Calendar #1078319Brian
MemberI am glad to see you were able to figure it out.
I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
Brian
MemberGreat glad it helps.
Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberSounds good.
Since this is marked resolved I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberHi,
Since your site is on a localhost there is not much I can do to troubleshoot it unfortunately.
It could be your theme/child theme combo is not working correctly. To test that you could go through our testing for conflicts guide:
And try the custom css from another theme/child theme combo.
Or use a plugin such as Simple Custom CSS.
To add the css that way.
Brian
MemberHi,
I can try to help out here, but we are limited in supporting plugin compatibility issues.
Try using the Plugin Logic to disable tooltip glossary plugin on the month view only:
And see if that is a good work around.
Cheers
Brian
MemberI am glad to see you were able to figure it out too!
I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
Brian
MemberHello,
As for this we do not have any features to do this.
You could cancel the tickets and then just add Out of Stock in the event title or content.
There could be a more customized solution you could code into the template maybe following our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
We try to help answer questions to get people started on customizations, but for the most part we are only able to support the features as they are.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi Again,
For changing the default times we have this guide:
https://theeventscalendar.com/knowledgebase/change-the-default-startend-time-for-new-events/
Does that work for you?
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
This css will show the Next and Previous Month Links above the calendar:
.tribe-events-month #tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next a, .tribe-events-month #tribe-events-header .tribe-events-sub-nav li,
.tribe-events-month #tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next a, .tribe-events-month #tribe-events-header .tribe-events-sub-nav li {
display: block;
}
Add that css to your theme’s stylesheet or through a plugin such as Simple Custom CSS.
Let me know if that helps.
Thanks
February 19, 2016 at 7:51 am in reply to: List tour dates in Multi language with iDeal payment #1078087Brian
MemberHi,
Thanks for the interest in our plugins. I can answer your questions.
What you are asking for is not possible with our plugins.
I would look more towards a booking plugin to do this.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Sorry for the issues you are having. I can help troubleshoot this with you.
That coding is the javascript for the tooltips.
Do you have caching on your site? If so does clearing the cache or disabling it remove the coding?
If not can you share a link in a private reply and I can take a look.
Cheers
Brian
MemberHi,
Thanks for using our plugins. Sorry for the issues you are having.
Are you talking about a refund?
To request a refund please follow our policy outlined here:
And we can take care of it. Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
For the most part we do not do anything with past events. Unless it is a recurring event and we have a clean up system to delete those events after a certain time period.
Otherwise past events are there in the system and you could go back in and modify the content as you would like.
As for Google it would correctly read the structured data and know it is a past event, but beyond that we do not do anything else.
Let me know if you have any follow up questions.
Thanks
-
AuthorPosts
