Restrict vendor details for categories on listing page

Hello,

I’d like to hide the vendor details of listings in a specific category. I want the listing/service page to show all the details except the vendors’. Please see details for removal marked in red below.

Theme: ExpertHive

It’s possible, but requires code customizations for filtering the listing template blocks. It’s much easier if you want to hide the vendor name for listings in all categories, then it’s possible with a simple CSS snippet.

Yes thanks, a CSS snippet will be helpful.

Hi,

Please try these CSS snippets:

.hp-listing--view-block .hp-listing__vendor, .hp-listing__categories.hp-listing__category,
.hp-listing__header
   {
	display: none;
}

.hp-listing--view-page .hp-vendor {
	display: none;
}

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