jathinhelp
Forum Replies Created
-
Hello,
Please use google and submit the ticket.
Regards,
WP Event Manager.- This reply was modified 2 years ago by jathinhelp.
Hello,
Please go to WP Event manager>> settings>> hide expired listings , also remember the event should have an expired date set only then the event will be hidden.
Regards,
WP Event Manager.Hello,
@calogero We’d like to inform you that you cannot customize the shortcodes you will be able to use only the default short codes and upon checking we found it was suggested to use [events per_page=”12″ orderby=”event_start_date”] not[events_map maps_type="ROADMAP"height="100px"width="100px"events per_page=”12″ orderby=”event_start_date”] and this will not work. So We’d like to inform you that you can only use the default shortcodes.
Regards,
WP Event Manager.Hello,
@philippmunz Thank you so much for the feedback.
Regards,
WP Event Manager.Hello,
@theconsul We’d like to inform you that with our plugin you can make registration and sell tickets for different trips , the registration form will be the same for all the events you can edit the registration form add or delete the fields we support all the payment methods that is associated with woo commerce and the additional options and RSVP functionality is not available. Please try our admin demo in our official site where you can check all the functionalities.
Regards,
WP Event Manager.Hello,
@larryhir Could you please try to reinstall WP Event manager and check.
Regards,
WP Event Manager.Hello,
@nadya-well Could you please open a ticket in our support console along with the screen recording of what you exactly need so that we can assist you further.
Regards,
WP Event Manager.Hello,
@eventaus the registration function is stored in this path \wp-content\plugins\wp-event-manager-registrations\includes\wp-event-manager-registrations-register.php.
The email function is in the below path,
\wp-content\plugins\wp-event-manager-registrations\wp-event-manager-registrations-functions.php
Regards,
WP Event Manager.Hello,
kl54 It was our pleasure assisting you.
Regards,
WP Event Manager.Hello,
@eventaus We understand your concern. We will investigate this and get back to you as soon as possible.
Regards,
WP Event Manager.Hello,
Please open a ticket in our support console. So that we can assist you further.
Regards,
WP Event Manager.Hello,
@jimk1416 Please add the below code in your theme functions.php file.add_filter(‘submit_event_form_fields’, ‘remove_event_country_fields’);
function remove_event_country_fields($fields) {
// Remove the ‘event_country’ field
unset($fields[‘event’][‘event_country’]);return $fields;
}
Regards,
WP Event Manager.Hello,
@jimk1416 You need to have google maps addon to look like the search form in the demo.
Regards,
WP Event Manager.Hello,
@eventaus We have verified this from our end and its working fine from our end. Could you please configure wp mail smtp and check if its configured then please open a ticket we will investigate from our end.
Regards,
WP Event Manager.Hello,
@eventaus You need to paste the below code in your theme functions.php file in the third line inside the bracket you need to put the event id which you need to hide.function hide_specific_events($query_args, $args) {
// IDs of the events you want to hide
$event_ids_to_hide = array(101, 102, 103); // Replace with your event IDs// Add post__not_in parameter to exclude specific event IDs
if (!isset($query_args[‘post__not_in’])) {
$query_args[‘post__not_in’] = array();
}
$query_args[‘post__not_in’] = array_merge($query_args[‘post__not_in’], $event_ids_to_hide);return $query_args;
}
add_filter(‘get_event_listings_query_args’, ‘hide_specific_events’, 10, 2);- This reply was modified 2 years ago by jathinhelp.