Feedspace Home Dashboard

How Do I Hide the Company Name and Role on My Reviews in Feedspace?

Last updated on June 18, 2026

Overview

Feedspace widgets show reviewer details (name, job title, and company) as part of each review card. There is no toggle in the widget editor to hide company or role specifically. You can hide these fields by adding a short CSS rule in the widget’s custom CSS panel, which targets those elements on every card in the widget.

A common reason for doing this: you have collected reviews from customers who did not fill in their company or role, so some cards show those fields empty and you would rather they not appear at all. Hiding them keeps the cards visually consistent.

How to hide company name and job title using custom CSS

Step 1: Open the widget editor and go to the Design tab

Click Widgets in the left sidebar. On the widget card, click the Pencil (Edit) icon to open the editor. The editor opens on the Select Review tab. Click the Design tab in the editor header.

Step 2: Enable the Custom CSS toggle

Scroll down the Design panel to the Advanced Customization section. Find the Custom CSS toggle and turn it on. A text area appears where you can enter your CSS rules. The CSS you add here only affects this specific widget, not any other widget or the page around it.

Step 3: Add the CSS to hide company and role

Paste the following into the CSS field. This hides both the company name and the job title on every review card in this widget:

The exact class names for the company and role elements are in the widget’s embed script, not the widget editor. To find them: embed the widget on a test page, right-click a review card that shows a company name, and click Inspect in your browser. Look for the element containing the company text and copy its class name. Then use display: none; targeting that class in the custom CSS field.

For example, once you have the class name (call it .feedspace-reviewer-company as a placeholder):

.feedspace-reviewer-company {
  display: none;
}

Step 4: Save and check the preview

Click Save and Next. The widget preview updates immediately. Use browser DevTools on a live embed to confirm the exact class names match before publishing.

What’s next

Once you have hidden the fields you do not need, review the full card layout to make sure nothing else shifted. If you want to match the widget card style to your site’s typography or colors, see How to Use Custom CSS in Feedspace Widgets.

Common questions

Will hiding company and role affect all my widgets?

No. Custom CSS is per-widget. The CSS you add to one widget only affects that widget. To hide company and role on another widget, add the same rule to that widget’s custom CSS panel as well.

Can I hide the role but still show the company name?

Yes. Use separate CSS rules, one targeting the job title element and one targeting the company element. Inspect the rendered widget in your browser to find the exact class names for each, then add a display: none; rule only for the one you want to hide.

You might also find helpful

How to Use Custom CSS in Feedspace Widgets

Overview Feedspace allows you to fully customize your Widgets using the Custom CSS feature.This option helps you match your review widget with your website’s design by adjusting colors, typography, and spacing: ensuring a seamless, branded look. Step 1: Open Widget Settings Step 2: Access the Custom CSS Option Step 3:...

Why Is My Custom CSS Not Working on My Feedspace Widget?

Overview If you’ve added CSS to your Feedspace widget but the styles aren’t taking effect, there are a few specific things to check. The most common cause is that the CSS is targeting a selector that the widget’s custom CSS panel doesn’t have access to, or that the toggle enabling...

How to Embed Reviews Using Feedspace Widgets

Overview Feedspace offers an easy way to display your customer reviews stylishly on your website. By embedding reviews through Feedspace widgets, you can enhance your website’s credibility and design. With options like Carousel and Masonry widgets, you can showcase your reviews in a way that best fits your site’s look....