How to remove address and post date from a listing


How do I remove the address and date from a listing? as per the screenshot? I don’t need the text to be available there. I can’t disable the geolocation because I need the map. So is there any other option available?

To remove the address and date from a listing, you can use the following CSS in Additional CSS.

  1. To remove address and date on the listing view page:
.hp-listing--view-page .hp-listing__location, 
.hp-listing--view-page .hp-listing__created-date {
    display: none !important;
}

  1. To remove address and date in listing blocks:
.hp-listing--view-block .hp-listing__location, 
.hp-listing--view-block .hp-listing__created-date {
    display: none !important;
}

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.