Forum Replies Created
-
AuthorPosts
-
Jürgen
ParticipantThis reply is private.
Jürgen
ParticipantHi Nico,
thank you very much for your help, I appreciate it.
Everything works fine now.
Regards,
JürgenMarch 4, 2017 at 4:54 am in reply to: Tickets are not editable and don´t show up as woo-products #1249405Jürgen
ParticipantHi Cliff,
I found the temporary solution here :
Thank you and have a nice weekend.
Jürgen
March 3, 2017 at 2:54 am in reply to: Tickets are not editable and don´t show up as woo-products #1248851Jürgen
ParticipantHi Cliff,
the requested screenshots were attached to the first message.
I´ll include it again, if it helps.February 28, 2017 at 1:12 am in reply to: Tickets are not editable and don´t show up as woo-products #1246747Jürgen
ParticipantHi Cliff,
tahnk you for your quick response.
I´m sorry, but you didn´t understand:
In the backend, it says, the ticket is created (see new screenshot) but there is no editable section, if I wanted to add some more information i.e.. In the frontend, found here : https://www.zurfreiheit.de/event/essigverkostung-und-fuehrung-durch-unsere-essigmanufaktur/ there is neither a price shown nor any ticket form, where customers could buy a ticket. The problem with woocommerce comes second, which means, if ET+ doesn´t correctly issue a ticket, I will not be able to sell it – neither via the single event page (as I used to) nor via any woo-product page.
I set all the files up according to the help pages, and it worked beautifully up until recently, when I began adding new events.
The last event with a ticket attached was added in January and it worked perfectly with woocommerce and all.
So, there must have been some changes to the way, tickets are now created.
Again: forget about woocommerce, in the first step, the tickets must be created, which they really aren´t by now.
Regards, Jürgen
Jürgen
ParticipantHi Geoff,
I just wanted to inform you, that the recurring events works great now. You wanted to inform me about the fix, but with the new dialoque it´s now just perfect.
Thank you and kind regards, this topic can now be closed.
Jürgen
Jürgen
ParticipantHi Geoff,
any news about the fix since the recurring events UI was fixed with the 4.4 release ?
Regards,
JürgenJürgen
ParticipantHi Geoff,
I´ve seen some updates now. Is there a chance of getting the above issue fixed soon ?
Regards,
JürgenJürgen
ParticipantHi Geoff,
that´s ok, I´ll just wait.
Regards,
JürgenJürgen
ParticipantHi Andras,
thank you for your quick response.
I´m not testing at all, I just got those error messages in the Google search console and I was wondering, why Google doesn´t find the information to the corresponding events. I am using Total-Theme, the developer is always up to date, but I can still double check, if you think, that might be the reason.
By the way, template overrides are shown in the help section, so here is a copy of that data :
EVENT TICKETS
Keine Keine nennenswerten Änderungen erkannt
EVENT TICKETS PLUS
Vorlagen eingeführt oder aktualisiert mit dieser Version (4.2.5):meta/radio.php
meta/checkbox.php
meta/number.php
meta/select.php
meta/text.phpVERANSTALTUNGSKALENDER PRO
Keine Keine nennenswerten Änderungen erkannt (means: no mentionable changes detected)What can I do about that ?
Regards,
JürgenApril 27, 2016 at 11:11 am in reply to: Move the "add to cart button" on WooCommerce Tickets – alternative form.php #1107815Jürgen
ParticipantHi Geoff,
I´m not sure if I understand you correctly.
I´m using a child-theme, so the theme-folder is quite small and I´ve added it to this post.
If you need something more, just tell me.
Regards,
JürgenApril 23, 2016 at 12:58 am in reply to: Move the "add to cart button" on WooCommerce Tickets – alternative form.php #1106226Jürgen
ParticipantHi Geoff,
sorry to disappoint you, but I checked the code in the functions.php and there are only straight apostrophes.
I guess, when I paste the code into the answeer field it gets translated (unicode or whatever) and therefore shows different marks.I´ve added a screenshot, so you can verify what I´m saying.
Regards,
Jürgen
April 21, 2016 at 1:49 am in reply to: Move the "add to cart button" on WooCommerce Tickets – alternative form.php #1105261Jürgen
ParticipantHi Geoff,
the code you are referring to was taken from the github site.
My actual functions.php looks like that :/*
* Moves the front-end ticket purchase form, accepts WP action/hook and optional hook priority
*
* @param $ticket_location_action WP Action/hook to display the ticket form at
* @param $ticket_location_priority Priority for the WP Action
*/
function tribe_etp_move_tickets_purchase_form ( $ticket_location_action, $ticket_location_priority = 10 ) {
if ( ! class_exists( ‘Tribe__Tickets__Tickets’) ) return;
$etp_classes = array(
‘Easy_Digital_Downloads’ => ‘Tribe__Tickets_Plus__Commerce__EDD__Main’,
‘ShoppVersion’ => ‘Tribe__Tickets_Plus__Commerce__Shopp__Main’,
‘WP_eCommerce’ => ‘Tribe__Tickets_Plus__Commerce__WPEC__Main’,
‘Woocommerce’ => ‘Tribe__Tickets_Plus__Commerce__WooCommerce__Main’,
‘Tribe__Tickets__Tickets’ => ‘Tribe__Tickets__RSVP’,
);
foreach ( $etp_classes as $ecommerce_class => $ticket_class) {
if ( ! class_exists( $ecommerce_class ) || ! class_exists( $ticket_class ) ) continue;
$form_display_function = array( $ticket_class::get_instance(), ‘front_end_tickets_form’ );
if ( has_action ( ‘tribe_events_single_event_after_the_meta’, $form_display_function ) ) {
remove_action( ‘tribe_events_single_event_after_the_meta’, $form_display_function, 5 );
add_action( $ticket_location_action, $form_display_function, $ticket_location_priority );
}
}
}
/*
* TO MOVE THE TICKET FORM UNCOMMENT ONE OF THE FOLLOWING BY REMOVING THE //
*/
/*
* Uncomment to Move Ticket Form Below Related Events
*/
//tribe_etp_move_tickets_purchase_form( ‘tribe_events_single_event_after_the_meta’, 20 );
/*
* Uncomment to Move Ticket Form Below the Event Description
*/
//tribe_etp_move_tickets_purchase_form( ‘tribe_events_single_event_after_the_content’, 5 );
/*
* Uncomment to Move Ticket Form Above the Event Description
*/
tribe_etp_move_tickets_purchase_form( ‘tribe_events_single_event_before_the_content’ );/*
* Causes WooCommerce Ticket product pages to stop redirecting to their event page
* See https://theeventscalendar.com/knowledgebase/selling-tickets-from-the-woocommerce-products-page/
*/
function tribe_wootix_no_hijack() {
if ( ! class_exists( ‘Tribe__Tickets_Plus__Commerce__WooCommerce__Main’ ) ) return;
$woo_tickets = Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance();
remove_filter( ‘post_type_link’, array( $woo_tickets, ‘hijack_ticket_link’ ), 10, 4 );
}
add_action( ‘init’, ‘tribe_wootix_no_hijack’ );So unfortunately that simple solution you suggested doesn´t work…
Any other idea ?
Regards,
Jürgen
April 20, 2016 at 12:40 am in reply to: Move the "add to cart button" on WooCommerce Tickets – alternative form.php #1104720Jürgen
ParticipantHi Geoff,
I know that code and I´ve added it into the functions.php already.
But it doesn´t work with the alternative form – there must be some line to be changed in order to work with the form I´m using – but I don´t know, which.
I´ve posted the code you are regarding to already in my second message.
Where do I have to edit the code so that it works for the alternative form ?
Regards, Jürgen
-
AuthorPosts
