You may edit or remove delimiters available in plugin using filters and examples below to functions.php file of your theme. We recommend to install Child theme not to loose the changes you add to 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.