Brian

Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 11,256 total)
  • Author
    Posts
  • in reply to: What happens to past events? #1078451
    Brian
    Member

    Ok sounds good.

    Let me know.

    Cheers

    in reply to: WP REST API V2 Endpoints for All Event Data? #1078449
    Brian
    Member

    Hi,

    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:

    Working With Post Meta Data Using The WordPress REST API

    This thread might help too:

    Any wp-api customization to get day events??

    I can try to help out more, but limited in supporting this until we add it into our plugin.

    Thanks

    in reply to: *I figured this out* How to Import Google Calendar #1078319
    Brian
    Member

    I 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!

    in reply to: strange code at bottom of calendar view #1078123
    Brian
    Member

    Great 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

    in reply to: Child Theme CSS issue #1078122
    Brian
    Member

    Sounds 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

    in reply to: Child Theme CSS issue #1078113
    Brian
    Member

    Hi,

    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:

    Testing Conflicts With Themes and Other Plugins

    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.

    in reply to: strange code at bottom of calendar view #1078111
    Brian
    Member

    Hi,

    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:

    Plugin Logic

    And see if that is a good work around.

    Cheers

    in reply to: License expired #1078105
    Brian
    Member

    I 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!

    in reply to: Force – Out Of Stock #1078102
    Brian
    Member

    Hello,

    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

    in reply to: Default Event Time #1078094
    Brian
    Member

    Hi 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?

    in reply to: Month Button / Links #1078090
    Brian
    Member

    Hi,

    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

    in reply to: List tour dates in Multi language with iDeal payment #1078087
    Brian
    Member

    Hi,

    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

    in reply to: strange code at bottom of calendar view #1078074
    Brian
    Member

    Hi,

    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

    in reply to: Take the event calendar pro back #1078070
    Brian
    Member

    Hi,

    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:

    Refund Policy

    And we can take care of it. Thanks

    in reply to: What happens to past events? #1078068
    Brian
    Member

    Hi,

    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

Viewing 15 posts - 1,351 through 1,365 (of 11,256 total)