Brian

Forum Replies Created

Viewing 15 posts - 751 through 765 (of 11,256 total)
  • Author
    Posts
  • in reply to: Add "website" link to the loop listing page #1097026
    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: Woo radio button won't stay lit on save of ticket #1097024
    Brian
    Member

    Hi,

    Thanks for using the Events Calendar.

    Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.

    The Events Calendar

    If you have purchased a plugin from us, please login and post in the premium forums for that plugin and we can help you out there:

    https://theeventscalendar.com/support/forums/

    Thanks again!

    in reply to: How to deactivate ticket mail? #1097007
    Brian
    Member

    Great, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.

    Thanks!

    in reply to: Bug in sales report #1096921
    Brian
    Member

    Hi Dirk,

    Glad we got one issue fixed for you.

    Thanks for bringing in these reports.

    Ok I tried to reproduce this new issue and created two new WooCommerce Tickets and placed an order and it worked correctly.

    Are both those tickets WooCommerce as well?

    Let me know and we can go from here.

    Thanks

    in reply to: Adding Text to Ticket Emails #1096911
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    You want to look for this file:

    plugins/event-tickets/src/views/tickets/email.php

    And then move it here in your theme:

    yourtheme/tribe-events/tickets/email.php

    Not sure where you want to add the text, but you could try right after the </table> tag on line 421.

    Let me know how that works out.

    Cheers

    in reply to: Community event date bug #1096906
    Brian
    Member

    Hi,

    Sorry for the issues you are having. I can help troubleshoot this with you.

    I am not able to reproduce on my test site.

    Do you have any custom snippets or custom templates in your theme in this directory:

    your-theme/tribe-events/community

    Can you please follow our testing for conflicts guide:

    Testing Conflicts With Themes and Other Plugins

    And see if that can narrow down the cause of this.

    Let me know what you find out.

    Thanks

    in reply to: Ticket email sends depending #1096896
    Brian
    Member

    Since that is running at init I do not think it is there.

    However, you would most likely remove it there and then hook in later to check the order and email there on your condition.

    in reply to: How to deactivate ticket mail? #1096895
    Brian
    Member

    Try adding this before before the closing php tag:

    ?>

    in reply to: Bug with recurring events and daylight savings time #1096868
    Brian
    Member

    Hi,

    Thanks for reporting this.

    We have a bug ticket in place, but we are also seeing people say it is fixed so we are trying to confirm it or fix it for 4.1.2

    Thanks

    in reply to: Post events code being duplicated for logged in users #1096864
    Brian
    Member

    Great, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.

    Thanks!

    in reply to: Nonprofit Follow Up Part Two #1096863
    Brian
    Member

    Hi,

    Sorry for the mix up.

    I found your entry in the form system, but not in our email system and looking into it.

    I will get back to you once I found out where it went.

    Cheers

    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!

    Brian
    Member

    Hi,

    Thanks for using the Events Calendar.

    Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.

    The Events Calendar

    If you have purchased a plugin from us, please login and post in the premium forums for that plugin and we can help you out there:

    https://theeventscalendar.com/support/forums/

    Thanks again!

    in reply to: Ticket email sends depending #1096856
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    We have this snippet to disable the Ticket Emails in WooCommerce.

    /*
    * Events Tickets Plus - WooCommerce Tickets - Prevent Ticket Email from being sent.
    * @ Version 4.1
    */
    add_action( 'init', 'wootickets_stop_sending_email' );
    function wootickets_stop_sending_email() {
    if ( class_exists( 'Tribe__Tickets_Plus__Commerce__WooCommerce__Main' ) ) {
    $woo = Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance();
    remove_filter( 'woocommerce_email_classes', array( $woo, 'add_email_class_to_woocommerce' ) );
    add_action( 'woocommerce_email_after_order_table', array( $woo, 'add_tickets_msg_to_email' ) );
    }
    }

    Does that give you a good starting point to work from?

    Thanks

    in reply to: How to deactivate ticket mail? #1096855
    Brian
    Member

    Hi,

    Thanks for using our plugins. I can help out here.

    We have this snippet to disable the Ticket Emails in WooCommerce.

    You can use the following snippet in your theme’s functions.php to change it:

    /*
    * Events Tickets Plus - WooCommerce Tickets - Prevent Ticket Email from being sent.
    * @ Version 4.1
    */
    add_action( 'init', 'wootickets_stop_sending_email' );
    function wootickets_stop_sending_email() {
    if ( class_exists( 'Tribe__Tickets_Plus__Commerce__WooCommerce__Main' ) ) {
    $woo = Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance();
    remove_filter( 'woocommerce_email_classes', array( $woo, 'add_email_class_to_woocommerce' ) );
    add_action( 'woocommerce_email_after_order_table', array( $woo, 'add_tickets_msg_to_email' ) );
    }
    }

    Does that work?

Viewing 15 posts - 751 through 765 (of 11,256 total)