Free and Premium WordPress Plugins & Themes Forums WordPress Plugins Hotel Booking Divi Child > need icons in front of Amenities and new line for each
- This topic has 6 replies, 2 voices, and was last updated 1 year, 5 months ago by J. Davis.
- AuthorPosts
- December 11, 2019 at 9:41 am #894194Patiphong PhoojiravivatParticipant
Hi
I’m using Divi Child Theme and poor in css.
First tiem with Metropess \and need some help.
THe amenities are like this
I want to have 2 modification in Amenities :
1. New line for each one
2. A small icons (Font Awesome) in front of eacch amenity.Please advice which file I have to modify and add anything.
Thanks & Best Regards
December 11, 2019 at 9:57 am #894211Patiphong PhoojiravivatParticipantSorry, Image is missing
Thankks & Best Regards
December 17, 2019 at 4:21 pm #896585SteveKeymasterHello Patiphong Phoojiravivat,
This is not so simple but you can use my answer as a starting point.
1. To make each amenity on a new line use this CSS code:
.mphb-room-type-facilities .mphb-attribute-value > span { display: inline-block; width: 100%; }
2. To remove a comma override this filter
apply_filters( 'mphb_room_type_facilities_delimiter', ', ' );
3. To add an icon you should add CSS based on the amenity name. For example you have a “Free WiFi” amenity. In this case css-class for this amenity will be
facility-free-wi-fi
. The CSS code to add an icon for this amenity will be:.facility-free-wi-fi > a::before { content: ''; font-family: 'fontawesome'; margin-right: 0.5em; }
December 17, 2019 at 10:55 pm #896684Patiphong PhoojiravivatParticipantThanks so much! It’s working now for
https://simathani.testyourwebs.com/accommodations
Anyway, for each accommodation it’s doesn’t work.
https://simathani.testyourwebs.com/accommodation/premier-suite-room/
Please help me to fix it too.
December 21, 2019 at 1:53 pm #898052Patiphong PhoojiravivatParticipantPlease void this post. I got it. Put in each Accommodation Types.
ThanksMay 19, 2023 at 10:32 am #1456817vldndParticipantHello,
Can anyone advise how this rule can be applied now?
On the current version of WP and Booklium, the comma is not removed.2. To remove a comma override this filter
apply_filters( 'mphb_room_type_facilities_delimiter', ', ' );
May 28, 2023 at 8:29 am #1460937J. DavisKeymasterHi,
You may add the code below to the functions.php file of the theme or by using the Code Snippets plugin:
function theme_mphb_room_type_facilities_delimiter(){ return ' new separator here '; } add_filter('mphb_room_type_facilities_delimiter','theme_mphb_room_type_facilities_delimiter');
Add any custom separator instead text
new separator here
best regards,
John Davis - AuthorPosts
- You must be logged in to reply to this topic.