Posted: May 20, 2014 at 8:55 am
|
the code <?php echo stripslashes_deep($location); ?> shows the location in this way: is it possible to change it in: do i have to modify the core? |
|
Hi, If you are looking to edit this on the event list page, then you can modify a template (event_list.php) to achieve the desired output. Copy /wp-content/plugins/event-espresso/templates/event_list.php and /wp-content/plugins/event-espresso/templates/event_list_display.php (both files required) over to /wp-content/uploads/espresso/templates/ and edit the event_list.php there. The variable in question is on line 343. |
|
Thank you. How can i modify the email format? |
|
Hi, Yes the registration page is virtually identical just copy over registration_page.php and registration_page_display.php and edit registration_page.php. The email layout is, unfortunately, much harder and would require a core file edit. If you wanted to achieve that you would need to edit the /wp-content/plugins/event-espresso/includes/functions/email.php file around line 258. Note that any updates will over write the email.php file. |
|
Thank you. |
|
Another question in the registration_page_display.php there is no space between the currency and the price (EUR150.00). |
|
Hi, It is but it is editing a core file (EE4 makes this much much easier). If you wish to you will need to edit /wp-content/plugins/event-espresso/includes/organization_config.php at approx line 115 Where it says $org_options['currency_symbol'] = 'EUR'; // use the Euro for all eurozone countries add a space after the EUR, like so $org_options['currency_symbol'] = 'EUR '; // use the Euro for all eurozone countries After saving the file, head over to the General Settings page in the Event Espresso menu, and save the options. This will set the currency to the modified version.
|
The support post ‘Formatting location’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.