Gabe

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Help with customizing the display and ticket limits #952547
    Gabe
    Participant

    I fixed the issue with the name of the event not being included by including the name of the event in the ticket name. Not ideal, but it worked.

    Thanks for the tip that “Apply Coupon was a Woocommerce thing. I did a google search and found this.

    Add to the functions.php file of the theme.

    // rename the coupon field on the cart page
    function woocommerce_rename_coupon_field_on_cart( $translated_text, $text, $text_domain ) {
    // bail if not modifying frontend woocommerce text
    if ( is_admin() || ‘woocommerce’ !== $text_domain ) {
    return $translated_text;
    }
    if ( ‘Apply Coupon’ === $text ) {
    $translated_text = ‘Apply Coupon or Voucher’;
    }
    return $translated_text;
    }
    add_filter( ‘gettext’, ‘woocommerce_rename_coupon_field_on_cart’, 10, 3 );

    The link you provided for adding a column is dead. Can you check it please and send me the proper link?
    http://code.tutsplus.com/articles/add-a-custom-column-in-posts-and-custom-post-types-admin-screen–wp-24934

    in reply to: Help with customizing the display and ticket limits #951949
    Gabe
    Participant

    Bump?

    I have heard from you on my last three posts in this thread. Can you help please?

    in reply to: Help with customizing the display and ticket limits #951551
    Gabe
    Participant

    And a couple more issues.

    1. I would think that these things are obvious, but maybe not.

    In the receipt, it under product it says the title of the ticket rather than the name of the tour. I want the name of the tour to be on the invoice. I am including the date of the tour in the title, so right below, “Thank you. Your order has been received.” I want it to say.

    Registration for <tour name>

    This needs to happen on the on-screen version and the e-mail version to the user and the e-mail version to the admin.

    2. When I duplicate a tour, it does not duplicate the ticket options. I have to go into each tour I copy and add the ticket types with the limits.

    3. Is there any way when looking at the list of events that I could see a quick count of attendees for each event rather than having to click attendees each time?

    4. I want to hide the date field in the list and on the single event pages since I am now including it as part of the event title. Please tell he where I can do that.

    in reply to: Help with customizing the display and ticket limits #951506
    Gabe
    Participant

    And one more that I can’t find please.

    On the Apply Coupon section.

    I want to change the label to in the ext field to “Code” and the button text to “Apply Coupon or Voucher Code”

    Thanks for all your help.

    in reply to: Help with customizing the display and ticket limits #951417
    Gabe
    Participant

    Thank you!

    We are so close! One more please.

    Once checkout is complete an order is e-mailed to the admin and the end user. Is there a way we can indicate on those e-mails what coupon code was used? We are going to be using voucher and coupon codes for promotions. It would be helpful for us to know what code was used.

    in reply to: Help with customizing the display and ticket limits #951134
    Gabe
    Participant

    Thank you, I am making a lot of progress.

    I want to take your advice on the coupon code for the students. I need to post a notice above the list of available tickets on the single event page. What template do I use for that?

Viewing 6 posts - 1 through 6 (of 6 total)