It is possible to remove/edit delimiters and separators by adding the following code examples to the functions.php file of your theme.
We recommend installing the Child theme not to lose the changes you add to the functions.php file.
1. Amenities
filter mphb_room_type_facilities_delimiter
function theme_mphb_room_type_facilities_delimiter(){
return ' new separator here ';
}
add_filter('mphb_room_type_facilities_delimiter','theme_mphb_room_type_facilities_delimiter');
2. Custom Attributes
filter mphb_room_type_user_attributes_delimiter
function theme_mphb_room_type_user_attributes_delimiter(){
return ' new separator here ';
}
add_filter('mphb_room_type_user_attributes_delimiter','theme_mphb_room_type_user_attributes_delimiter');
3. Thousand Separator in Price
filter default_option_mphb_thousand_separator
function theme_default_option_mphb_thousand_separator() {
return ' new separator here ';
}
add_filter( 'default_option_mphb_thousand_separator','theme_default_option_mphb_thousand_separator');
4. Decimal Separator in Price
filter default_option_mphb_decimals_separator
function theme_default_option_mphb_decimals_separator() {
return ' new separator here ';
}
add_filter('default_option_mphb_decimals_separator','theme_default_option_mphb_decimals_separator');
Comments
0 comments
Please sign in to leave a comment.