Eventbrite does not import all payment options

Home Forums Ticket Products Eventbrite Tickets Eventbrite does not import all payment options

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1048205
    Peter
    Participant

    Hi,

    when I import an event to my wordpress, I only get displayed the credit card options:

    See here: http://www.peter-niederhuber.de/event/emdr-gruppensupervision-fuer-kinder-und-jugendlichen-psychotherapeuten-2/

    In the widget I can also select online bank tranferrals. (sofort and sepa

    http://www.peter-niederhuber.de/event/emdr-gruppensupervision-fuer-kjp/

    Is there a fix to that?

    Thank you Peter

    #1048276
    Peter
    Participant
    #1050158
    Brian
    Keymaster

    Hi,

    Thanks for using our plugins I can help out here.

    I visited your site and see the difference.

    The one with all the options is their widget correct?

    I am not sure why ours is different, but we have no direct control of the content there as it is generated by Eventbrite using their API.

    I compared both the Widget iframe url and our iFrame url and it looks like ours uses the standard url and yours uses a German? version of the url.

    That might be causing the issue. There is a filter that we could use to try and change the url.

    Do you want to try and do that?

    That is about all I can think of to change this, not sure if it will work though, but worth a try.

    Let me know.

    Thanks

    #1050212
    Peter
    Participant

    Hi Brian,

    thank you for your answer.
    Yes the one with all the options is the one I want.

    Sure let´s try to use a different filter.

    I have already tried this in my functions.php

    /**
    * Using eventbrite.co.uk for Eventbrite Tickets
    */
    function useEventbriteDotDe($url) {
    return str_replace(‘.com’, ‘.de’, $url);
    }

    add_filter(‘tribe_eb_api_url’, ‘useEventbriteDotDe’);

    But this might not be the right URL.

    Peter

    #1050547
    Brian
    Keymaster

    Hi,

    So I got this filter to work:

    /**
    * Using eventbrite.de for Eventbrite Tickets
    */
    function useEventbriteDotDe($url) {
    return str_replace('.com', '.de', $url);
    }
    add_filter( 'tribe_events_eb_iframe_url', 'useEventbriteDotDe' );

    But it did not make a difference.

    I imported this event:

    http://www.eventbrite.de/e/emdr-gruppensupervision-fur-kinder-und-jugendlichen-psychotherapeuten-registrierung-20185764164

    And it showed all the Payment Options in the iFrame with or without the filter.

    Is the one that does not show all the Payment Options created in WordPress using our plugin?

    Thanks

    #1050575
    Peter
    Participant

    Thank you,

    ok this filter imports all my options.

    But my calendar configuration panel is gone now for all of my events?

    https://onedrive.live.com/redir?resid=DB6F56FABF47DB89!626&authkey=!AJySI1Wm_UTcIlU&v=3&ithint=photo%2cpng

    What can I do?

    #1050594
    Brian
    Keymaster

    Hi,

    I am not sure what you linked too.

    I do not recognize that as part of our plugins.

    #1050611
    Peter
    Participant

    This is the screen I get when I want to edit a event.
    Does it help, when I give you access to my wordpress panel?

    #1050614
    Peter
    Participant

    btw — functions.php is the right place for your filter. Or is there a better solution?

    Thank you

    #1050656
    Peter
    Participant

    Ok, I deactivated and reactivated the plugins, everything works fine now.

    Thank you for your help.

    There is still the question for the right place for the filter snippet.

    #1050666
    Brian
    Keymaster

    Hi,

    Glad it is working.

    Yes the functions.php is the correct place.

    I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.

    Thanks

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Eventbrite does not import all payment options’ is closed to new replies.