Title: Amenities
Last modified: February 1, 2020

---

# Amenities

 *  Resolved [Chris G](https://wordpress.org/support/users/chrisvk/)
 * (@chrisvk)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/attributes-22/)
 * Hello, is there a way to remove hyperlinks from amenities- I would prefer to 
   have them as plain text instead.
 * Thanks
    -  This topic was modified 6 years, 4 months ago by [Chris G](https://wordpress.org/support/users/chrisvk/).
      Reason: incorrect description and title

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Contributor [motopress](https://wordpress.org/support/users/motopress/)
 * (@motopress)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/attributes-22/#post-12392059)
 * Hello Chris,
    The code below will remove the links from amenities. Apply it to
   Appearance > Customize > Additional CSS:
 *     ```
       .mphb_room_type .entry-content .mphb-single-room-type-attributes .mphb-room-type-facilities .mphb-attribute-value a {
         pointer-events: none;
       }
       ```
   
 *  Plugin Contributor [motopress](https://wordpress.org/support/users/motopress/)
 * (@motopress)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/attributes-22/#post-12392132)
 * Alternate solution by overriding plugin files:
 * In order to remove links form amenities at property listing layout follow the
   steps below:
    -connect to your server and copy the following file \wp-content\
   plugins\motopress-hotel-booking\templates\single-room-type\attributes\**facilities.
   php** – then navigate to \wp-content\themes\aquentro\ and create \hotel-booking
   plugin there. – open just created \hotel-booking folder and create another folder
   called \single-room-type – open just created \loop-room-type directory and create
   there \attributes\ folder, open it and paste the copied facilities.php file there.–
   open facilities.php file you pasted with text editor – find the line below `$
   facilityLink = sprintf( '<a href="%s">%s</a>', esc_url( $facilityLink ), $facility-
   >name );` -replace it with the following line `$facilityLink = sprintf( '%s',
   $facility->name );` – save the changes in the file and preview your site.
 * We’d highly appreciate if you review Hotel Booking plugin [https://wordpress.org/support/plugin/motopress-hotel-booking-lite/reviews/#new-post](https://wordpress.org/support/plugin/motopress-hotel-booking-lite/reviews/#new-post)
   Thanks in advance
 *  Thread Starter [Chris G](https://wordpress.org/support/users/chrisvk/)
 * (@chrisvk)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/attributes-22/#post-12393022)
 * Hi, thanks for the replies, my css is a little rusty and I wasn’t aware of the**
   pointer-events** property.
    It seems to be happily solved with:
 *     ```
         .mphb-room-type-facilities  a {
         pointer-events: none;
       }
       ```
   
 * I’ll happily leave a review once I’m up and running.
    Chris

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Amenities’ is closed to new replies.

 * ![](https://ps.w.org/motopress-hotel-booking-lite/assets/icon.svg?rev=3313467)
 * [MotoPress Hotel Booking](https://wordpress.org/plugins/motopress-hotel-booking-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/motopress-hotel-booking-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/motopress-hotel-booking-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/motopress-hotel-booking-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/motopress-hotel-booking-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/motopress-hotel-booking-lite/reviews/)

## Tags

 * [amenities](https://wordpress.org/support/topic-tag/amenities/)

 * 3 replies
 * 2 participants
 * Last reply from: [Chris G](https://wordpress.org/support/users/chrisvk/)
 * Last activity: [6 years, 4 months ago](https://wordpress.org/support/topic/attributes-22/#post-12393022)
 * Status: resolved