przemko88
Member
Posted 3 months ago #
Hi,
Can anyone help me to find a file which contains a label for Price and Spaces that i want to translate to another language, in booking form in single event. I have found the rest of labels (phone, email, comment.. etc.) in /templates/forms/bookingform/booking-fields.php
Regards,
przemko88
http://wordpress.org/extend/plugins/events-manager/
agelonwl
Member
Posted 3 months ago #
Hi,
maybe you can try this snippet in your theme functions.php
function my_custom_ticket_header($collumns){
$collumns = array( 'type' => __('R Ticket Type','dbem'), 'price' => __('R Price','dbem'), 'spaces' => __('R Spaces','dbem'));
return $collumns;
}
add_filter('em_booking_form_tickets_cols','my_custom_ticket_header',1,1);
if you're translating them to another language, they should be translatable from within the translation files -
http://wp-events-plugin.com/documentation/translating/