Forum Replies Created
-
AuthorPosts
-
August 10, 2016 at 8:21 pm in reply to: Sending/Receiving Notification of purchased ticket issue. #1150325
metapixel
ParticipantWhat do you mean on “remove all customization”? The template is a customized theme.
August 9, 2016 at 6:49 pm in reply to: Sending/Receiving Notification of purchased ticket issue. #1149812metapixel
ParticipantThis reply is private.
August 8, 2016 at 10:25 pm in reply to: Sending/Receiving Notification of purchased ticket issue. #1149299metapixel
ParticipantWe used the following codes that the developer gave us to move the placement of the ticket form:
functions.php:
function tribe_move_tickets_in_page() {
if ( !class_exists(‘Tribe__Tickets_Plus__Commerce__WooCommerce__Main’) ) return;
remove_action ( ‘the_content’, array ( Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance(), ‘front_end_tickets_form_in_content’ ) );
remove_action ( ‘the_content’, array ( Tribe__Tickets__RSVP::get_instance(), ‘front_end_tickets_form_in_content’ ) );
}
tribe_move_tickets_in_page();custom post type single templates:
<?php Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance()->front_end_tickets_form(); ?>
<?php Tribe__Tickets__RSVP::get_instance()->front_end_tickets_form(); ?>August 8, 2016 at 7:07 pm in reply to: Sending/Receiving Notification of purchased ticket issue. #1149281metapixel
ParticipantOur theme is customized, what is the specific changes that we need to be done in our theme for it work?
May 27, 2016 at 12:58 am in reply to: Change RSVP and Woocommerce text in the ticket creation radio button options. #1119600metapixel
ParticipantThanks for the reply!
My issue for the front end is already resolved. However, we really need to change the RSVP and Woocommerce labels on the creation of tickets even if we should resort to editing the core files. Can you direct me to the files and lines to edit on the core files to replace the RSVP and Woocommerce labels? I’m not that good in php and I’m afraid of looking for it by myself since I don’t want to break the plugin. Your help will be much appreciated. Thanks in advance!
May 20, 2016 at 12:05 am in reply to: Change RSVP and Woocommerce text in the ticket creation radio button options. #1116868metapixel
ParticipantI almost forgot. We also need to change the RSVP and Tickets text headers being displayed in the front end ticket page. Is that possible? Again, thanks in advance.
metapixel
ParticipantOne more thing. How is this done with the RSVP? I thought it would affect the RSVP form but it’s still being placed after the content. Thanks in advance!
May 18, 2016 at 10:54 pm in reply to: Moving the ticket form in my custom post type layout. #1116256metapixel
ParticipantDon’t mind my previous comment. I already got it to work. Thanks for the help and fast response!
May 18, 2016 at 10:30 pm in reply to: Separating RSVP and Woocommerce Tickets for different Post Types. #1116251metapixel
ParticipantSorry, I was a bit unclear from what I needed. What I need to do is for the post creation/edit dashboard page of my custom post type with tickets enabled. When I create a new ticket, there is a radio button option for RSVP or Woocommerce. I need to separate the 2 options in the post creation/edit dashboard page, RSVP only for a specific custom post type and Woocommerce only for a different custom post type. Sorry for the misunderstanding and thanks in advance.
May 18, 2016 at 10:12 pm in reply to: Moving the ticket form in my custom post type layout. #1116250metapixel
ParticipantAdding the first code in my functions.php breaks the website. Is there something wrong with the code? This could probably solve my what I’m looking for but I think there’s something wrong with how the code was written.
-
AuthorPosts
