Some question, regarding to the implementation
-
Hi,
Thank you very much for the great plugin and documentation!
I have some question, regarding to the implementation, please be so kind and help to solve these (I also send you an email, but maybe these platform will be usefull also for other user).
1.
We have problem with the order by functions. We aded some numeric field to the event and would like to order the events also by this field, we follow this document:
https://wp-eventmanager.com/documentation/ordering-events-by-event-start-date-meta-key
but the added option / field doesnt appear in the order by filter.We use this code:
function theme_name_custom_orderby( $query_args ) { $query_args[ ‘orderby’ ] = ‘meta_value’; $query_args[ ‘order’ ] = ‘DESC’; return $query_args; } add_filter( ‘event_manager_get_listings_args’, ‘theme_name_custom_orderby’, 99 ); function theme_name_custom_orderby_query_args( $query_args ) { $query_args[ ‘meta_key’ ] = ‘_expected_estimated_avarage_price’; return $query_args; } add_filter( ‘get_event_listings_query_args’, ‘theme_name_custom_orderby_query_args’, 99 );
2.
The other problem is the behaviour of the map.I setup custom marker image, it is visible on the single event page:
https://booking.webfolio.pw/event/teszt-03/But the other maps use the default and doesn’t show the location:
https://booking.webfolio.pw/events/The main problem is, that the maps doesn’t show the event location, all of the markers are in the middle of the ocean.
3.
I have also question regarding to the workfow.If the vendors click on the Post an event or Event dashord menu, than they have to login. But if they click on the login link, than they can use the standard wordpress login page / windows. The sitution is the same in case of the Registration link:
https://booking.webfolio.pw/wp-login.php?action=registerIs it possible to use for these function also some predesigned form, something like in case of the account:
https://booking.webfolio.pw/fiokom4. I not reaaly understand the role of the registration form, I setup the buyer only option for this, but it seems, that everybody can registry, witout any payment (purchase of the ticket). Can you please help me, what is wrong?
Thank you very much!
The page I need help with: [log in to see the link]
The topic ‘Some question, regarding to the implementation’ is closed to new replies.