Brian

Forum Replies Created

Viewing 15 posts - 5,341 through 5,355 (of 11,256 total)
  • Author
    Posts
  • in reply to: Map View Events #972748
    Brian
    Member

    Hi,

    I noticed you are using the Post Types Order plugin.

    https://wordpress.org/support/plugin/post-types-order

    I have that plugin on my test site as it has caused issues before.

    Once I activated it, I immediately saw the issue you are having.

    That is most likely the cause of this issue as if it messed up my site right away it would be doing the same to yours.

    in reply to: WPML Support for WooCommerce Tickets Extension #972737
    Brian
    Member

    Sorry again to disappoint. I hope one day we can support WPML.

    For now I am closing this thread as there is nothing more we can do here.

    in reply to: Add time zone to event time #972736
    Brian
    Member

    You’re welcome.

    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: Upgrade EC Pro V2.0.11 to V3.10 Theme Failures #972735
    Brian
    Member

    Hi hill8978,

    That private reply does not contain information that would help do that.

    If you do not want to ftp a plugin update and automatic updates are not working.

    You can deactivate and delete pro and then get the latest version from your account here and upload it and active it all through the admin.

    Deactivating the event plugins does not erase settings or change events.

    If you have further issues, please create a new thread one on one and we can better help you that way.

    Cheers

    in reply to: Weekly view – hours displayed by default #972734
    Brian
    Member

    Ok thanks for the info.

    You added this coding correct? That is set to show the hours between 7am to 6pm in each day of week view.

    If you want 8am to 8pm then change it to the following:

    <?php

    add_filter( 'tribe_events_week_get_hours', 'filter_week_hours' );

    function filter_week_hours( $hours ) {
    $hour = 0;

    foreach ( $hours as $key => $formatted_hour ) {
    if ( $hour < 8 || $hour > 20 ) {
    unset( $hours[ $hour ] );
    }

    $hour ++;
    }

    return $hours;
    }

    Let me know if that works out.

    Category Colors
    So we do not have Category Colors features built in, but Andy Fragen has a great plugin called The Events Calendar Category Colors that does it:

    The Events Calendar: Category Colors

    I would check that out.

    Cheers

    in reply to: Problems with PRO WIDGET Shortcode v3.10 #972688
    Brian
    Member

    Great glad it helps.

    The documentation has been fixed as well, thanks for bring it up.

    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: Post the date of Events with SNAP #972687
    Brian
    Member

    Thanks for that information.

    It does not look like they have a way to use custom fields.

    You maybe to put the date in the event excerpt field and then pull in both the excerpt and content.

    That might get what you are looking for.

    in reply to: Recurring Events Display old events #972684
    Brian
    Member

    Great glad it helps.

    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: How can others post an event? #972683
    Brian
    Member

    Your Welcome.

    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: WPML Support for WooCommerce Tickets Extension #972682
    Brian
    Member

    Sorry to disappoint, but with the delay in 3.10 we have not gotten to WPML compatibility and do not have any coding to provide and do not have a timeline when it might happen.

    in reply to: dequeue styles filter bar 3.10 #972627
    Brian
    Member

    Hi,

    Thanks for using our plugins.

    Looks like a change to the registered name in WordPress is causing this.

    Try out this coding instead, it worked for me:

    add_action( 'wp_enqueue_scripts', 'remove_filter_bar_styles', 100 );
    function remove_filter_bar_styles() {
    wp_dequeue_style( 'Tribe__Events__Filterbar__View-css' );
    }

    Let me know if that works for you.

    Thanks

    in reply to: Add time zone to event time #972624
    Brian
    Member

    Hi Lora,

    Thanks for using our plugins.

    We do not have a feature to display the timezone for the event.

    You maybe to do it through a customization of the theme following our themer’s guide:

    https://theeventscalendar.com/knowledgebase/themers-guide/

    And then you could put a custom field in the event editor of the admin to enable a timezone to be selected.

    Also, If you would like to request that feature please head to our UserVoice Page and add your own or upvote that feature as they will increase the chances of it being added to a future version.

    http://tribe.uservoice.com/forums/195723-feature-ideas

    Cheers

    in reply to: Showing recurring events after one-day-events #972623
    Brian
    Member

    Hi,

    Thanks for using our plugins.

    We do not have any features to do as you describe, but it could be possible with a customization.

    We are limited in supported customizations, but I can help you get started.

    You can setup custom queries of events using tribe_get_events

    Using tribe_get_events

    And then we have this guide to getting single and recurring events:

    Query Ongoing and Single Events Separately

    That would enable you to get the events and you could then style the output the way you would like.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: WPML Support for WooCommerce Tickets Extension #972621
    Brian
    Member

    Hi,

    Sorry for the issues between our plugins and WPML.

    For now our plugins do not work well together and we do not have any coding or support to provide to fix them.

    Unfortunately, achieving WPML integration is not a simple problem to solve.

    In this case it is not absolutely clear that changes are even required or would be best made in our own codebase – which already follows most or all WordPress best practices for internationalization.

    It could be that WPML itself needs to change how it works to accommodate a wider range of plugins, like our own, or alternatively it may need to introduce new facilities our plugins can interact with before we can make changes on our end.

    Given the number of unknowns we do not have any coding to provide to resolve the issues and although we are looking to make the plugins compatible I do not have a timeline when that might happen.

    Let me know if you have any follow up questions.

    Thanks

    in reply to: WooCommerce Tickets not Showing at front end #972611
    Brian
    Member

    Hi,

    Please make sure to answer the following so we can get to the bottom of this:

    Are you able to go into any of the ticket products and resave one of them and does that enable it to show then?

    Also, do you have any custom coding for the Events Calendar in your theme or any custom templates?

    If a ticket has a start sell date of 6/28 and today is 6/24 that ticket would not show on the front end. This date is set per ticket and not the start and end date of the event.

    Let me know.

Viewing 15 posts - 5,341 through 5,355 (of 11,256 total)