How to remove the "ADDED ON 'DATE'" from listings

Hi people,
it is possible this specific subject was treatd before, but I can’t find it.
I’m trying to get rid of the ‘ADDED ON XXXXX’ string that shows on the front page and on the listing page. I tried some CSS but it does not work, or maybe it is not the correct string.

.hp-listing__details .hp-listing__details--primary {display: none}

.hp-listing__created-date .hp-listing__date .hp-meta {display: none
}

.hp-listing__created-date {display: none}
.hp-listing__date {display: none}
.hp-meta {display: none}
.hp-listing__meta {display: none}
.hp-listing__time {display: none}

.hp-listing__created-date .hp-listing__date .hp-meta {display: none}

I tried them separetely, all together, one at a time, no luck.

Glad if you can help.

Thanks

Hi. Try this CSS:

.hp-listing--view-block .hp-listing__created-date,
.hp-listing--view-page .hp-listing__created-date {
  display: none;
}
2 Likes

thanks very much. It works

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

Google instead indexing and show my listing page title,

It shows published and adding date like below: Added on 09/27/2024

How to remove added on date from listing?

I think it can be nice if you add a feature in next version to off/on this from hivepress dashboard by one click.

Hi,

Please check the solution in this topic.

1 Like

It works great thanks. But please add on/off button for this in admin dashboard for next release version.

.hp-listing--view-block .hp-listing__created-date,
.hp-listing--view-page .hp-listing__created-date {
  display: none;
}

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