Jürgen

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 31 total)
  • Author
    Posts
  • in reply to: Error message in woo – email #1287012
    Jürgen
    Participant

    This reply is private.

    in reply to: I extended the wrong plugin :-( #1271988
    Jürgen
    Participant

    Hi Nico,

    thank you very much for your help, I appreciate it.

    Everything works fine now.

    Regards,
    Jürgen

    Jürgen
    Participant

    Hi Cliff,

    I found the temporary solution here :

    After save a Ticket in New Event the ticket disapear

    Thank you and have a nice weekend.

    Jürgen

    Jürgen
    Participant

    Hi Cliff,

    the requested screenshots were attached to the first message.
    I´ll include it again, if it helps.

    in reply to: Tickets are not editable and don´t show up as woo-products #1246747
    Jürgen
    Participant

    Hi 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

    in reply to: Recurring events – rules are not followed #1245875
    Jürgen
    Participant

    Hi 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

    in reply to: Recurring events – rules are not followed #1215698
    Jürgen
    Participant

    Hi Geoff,

    any news about the fix since the recurring events UI was fixed with the 4.4 release ?

    Regards,
    Jürgen

    in reply to: Recurring events – rules are not followed #1204330
    Jürgen
    Participant

    Hi Geoff,

    I´ve seen some updates now. Is there a chance of getting the above issue fixed soon ?

    Regards,
    Jürgen

    in reply to: Recurring events – rules are not followed #1189497
    Jürgen
    Participant

    Hi Geoff,

    that´s ok, I´ll just wait.

    Regards,
    Jürgen

    in reply to: Recurring events – rules are not followed #1189013
    Jürgen
    Participant

    This reply is private.

    • This reply was modified 9 years, 6 months ago by Jürgen.
    in reply to: Google search console errors #1158448
    Jürgen
    Participant

    Hi 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.php

    VERANSTALTUNGSKALENDER PRO
    Keine Keine nennenswerten Änderungen erkannt (means: no mentionable changes detected)

    What can I do about that ?

    Regards,
    Jürgen

    Jürgen
    Participant

    Hi 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ürgen

    Jürgen
    Participant

    Hi 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

    Jürgen
    Participant

    Hi 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

    Jürgen
    Participant

    Hi 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

Viewing 15 posts - 1 through 15 (of 31 total)