Home › Forums › Ticket Products › Eventbrite Tickets › Eventbrite does not import all payment options
- This topic has 10 replies, 2 voices, and was last updated 10 years, 3 months ago by
Brian.
-
AuthorPosts
-
December 30, 2015 at 8:41 am #1048205
Peter
ParticipantHi,
when I import an event to my wordpress, I only get displayed the credit card options:
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
December 30, 2015 at 2:27 pm #1048276Peter
ParticipantJanuary 4, 2016 at 6:13 pm #1050158Brian
MemberHi,
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
January 4, 2016 at 9:54 pm #1050212Peter
ParticipantHi 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
January 5, 2016 at 8:35 am #1050547Brian
MemberHi,
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:
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
January 5, 2016 at 8:51 am #1050575Peter
ParticipantThank you,
ok this filter imports all my options.
But my calendar configuration panel is gone now for all of my events?
What can I do?
January 5, 2016 at 9:17 am #1050594Brian
MemberHi,
I am not sure what you linked too.
I do not recognize that as part of our plugins.
January 5, 2016 at 9:42 am #1050611Peter
ParticipantThis is the screen I get when I want to edit a event.
Does it help, when I give you access to my wordpress panel?January 5, 2016 at 9:47 am #1050614Peter
Participantbtw — functions.php is the right place for your filter. Or is there a better solution?
Thank you
January 5, 2016 at 10:50 am #1050656Peter
ParticipantOk, 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.
January 5, 2016 at 11:11 am #1050666Brian
MemberHi,
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
-
AuthorPosts
- The topic ‘Eventbrite does not import all payment options’ is closed to new replies.
