chathuripxl
Forum Replies Created
-
For not loading locations
When entering an address, if the map doesn’t find it, try writing the address differently. Events Manager takes your address + town + state + postcode + country and submits it to Google for a location. If your address works on maps.google.com then it should work on Events Manager. Additionally, for finer precision, you should be able to drag the map position marker to the exact place you want to focus on.Hello,
Here it displays the locations that are defined as location type is url.
So can you make sure you have added url type locations.
For other location related placeholders please refer https://wp-events-plugin.com/documentation/placeholders/ Location Related Placeholders section.
Eg:
echo $event->output( '#_LOCATIONNAME' );
Please check at Events -> settings -> formatting -> Single events page
Single event page format section. Here it has added Date/Time, Location and Categories. You can add translated text there.Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Currency not listedYou can add any additional currency like below.
Use appropriate currency related details like name, symbol, true symbol.
Refer to https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/ add this code.function my_em_get_currencies( $currencies ){ $currency_id = 'XXX'; if( empty($currencies->names[$currency_id]) ) { $currencies->names[$currency_id] = 'xxxx'; $currencies->symbols[$currency_id] = 'CCCC'; $currencies->true_symbols[$currency_id] = 'ZZZZ'; } return $currencies; } add_filter('em_get_currencies', 'my_em_get_currencies');
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] List don’t displayHello,
I think this is related to your searching form. When I select events from dropdown event type it loads data like that. Seems the search form is not Events manager.Hello,
Are you referring to selection of location while adding an event,
https://www.dropbox.com/s/6o8vvb59hkrmqr1/Capture.JPG?dl=0And is this https://stabatmater.info/nl/agenda/ page is setted as Events ->settings -> Event List/Archives -> Events page
Hello,
In this code the solution I can suggest at the moment is use css for hide the category.select option[value="81"] { display: none; }
Can you confirm that the above content is added to Events -> Settings ->Formatting-> Events-> Events page -> Default event list format header section.
Because I see those table headings in the above content are in English and in your page, it shows table headings are translated.Please put translations at fomattings of single event post
Events -> settings -> formatting -> Events -> Single Event Page section.Hello,
You can use
{has_location_image}
content
{/has_location_image}function my_em_custom_category_output_condition($show_condition, $condition, $match, $EM_Event){ if( is_object( $EM_Event) && preg_match('/^has_location_image/',$condition, $matches) ){ $location_post = $EM_Event->get_location()->post_id; $show_condition = has_post_thumbnail( $location_post ) ? true : false; } return $show_condition; } add_filter('em_event_output_show_condition', 'my_em_custom_category_output_condition', 100, 4);
- This reply was modified 3 years, 8 months ago by chathuripxl.
1.Seems you are referring to the wp event manager plugin and this is the events manager plugin. Please refer to this https://wp-events-plugin.com/ for documentation.
2. The [events_list] shortcode will show events from the format at
Events->settings-> fomatting -> Events -> Events page ->Default event list format section.
You can add custom formatting thereWhat is the shortcode you have used for display world map?
Have you used style for the map?
Please follow https://wp-events-plugin.com/documentation/google-maps/ this doc to add correct styling?1. Are you refering here booking form register button? In this case you have to write custom js script for submit button to check fields
2. For this you can render the events list with conditional placeholder like
{is_past}<div class="past-event">content</div>{/is_past} //event is in the past {is_future}content{/is_future}//event is in the future {is_current}content{/is_current}
So you can style .past-events class accordingly
Hello,
Can you give access to the page that this issue happens?