WooCommerce Store Owners: Hide Your Name and Date from Product Search Results
Ever searched for a product on your own store, only to find your name or the product's publish date popping up right there in the results? It's a common head-scratcher for many WooCommerce store owners, and it recently sparked a lively discussion in an online community we follow. Let's dive into why this happens and, more importantly, how to make it disappear, keeping your product listings clean and professional.
The original poster, a store owner selling comics on WooCommerce, noticed this exact issue. When they searched their site, their name and the date each product was posted appeared in the search results. Understandably, they wanted to know how to turn it off. Take a look at what they were seeing:

Why Your Name & Date Show Up in Product Search Results
This isn't a bug with WooCommerce itself, but rather a quirk of how WordPress themes often handle different 'post types'. A helpful community member pointed out that WooCommerce products are, at their core, a custom post type within WordPress. Many themes are designed to display 'post meta' (like author and date) on regular blog posts, and sometimes they apply these same display rules to product listings by default. So, your theme is likely outputting this metadata on product archive templates.
It's important to distinguish between this happening on your own site's search results versus in Google's search results. The original poster clarified their issue was on-site, but solutions for both were discussed, offering a comprehensive look:
- If it's on your own site, it's almost certainly your theme.
- If it's in Google, it could be your theme, an SEO plugin, or even cached data Google pulled before you made changes.
The Fix: Step-by-Step Solutions
Good news: there are several ways to tackle this, ranging from simple clicks to a bit of code. Always remember to back up your site before making any significant changes, especially when editing theme files!
1. Check Your Theme Settings (The Easiest Way)
This is where you should start, as multiple community members highlighted it as the most common solution. Many modern themes offer built-in toggles for displaying post meta.
- Go to Appearance > Customize in your WordPress dashboard.
- Look for sections related to WooCommerce, Product Catalog, Single Product Settings, or even general Blog/Post Settings.
- Search for options like "Display post meta," "Author," "Date," "Posted by," or similar. Disable these options specifically for products or archives if you find them.
- Save and publish your changes.
This often resolves the issue without needing any code.
2. Add Custom CSS (A Quick Code Snippet)
If your theme doesn't have a direct setting, CSS is a fast and effective way to hide the elements. One community member provided this exact snippet:
- Go to Appearance > Customize > Additional CSS.
- Add the following code:
.woocommerce ul.products li.product .posted_on, .author { display: none; }
This CSS tells the browser to simply not display elements with the classes .posted_on and .author within your WooCommerce product listings. It's a visual fix, meaning the data is still there, just not shown.
3. Advanced Code via functions.php (Use with Caution!)
For more robust control or if you want to remove the data entirely (especially for cases where it might appear in oEmbed responses or author archives), you can use PHP. However, never edit your theme's functions.php directly! Your changes will be overwritten with the next theme update. Instead, use a child theme or a dedicated snippet plugin like FluentSnippets (as suggested by a respondent) or Code Snippets.
Here are snippets shared in the discussion:
/**
* Remove author name and URL from oEmbed response data.
*/
add_filter( 'oembed_response_data', function( $data ) {
unset( $data['author_name'], $data['author_url'] );
return $data;
} );
/**
* Redirect author archive URLs to the homepage to prevent username enumeration.
*/
add_action( 'template_redirect', function() {
if ( is_author() ) {
wp_safe_redirect( home_url() );
exit();
}
} );
The first snippet removes author details from oEmbed data, which might be pulled if your products are embedded elsewhere. The second redirects author archive URLs, which is a good security practice to prevent someone from easily enumerating usernames on your site.
4. Check SEO Plugin Settings (If Google Search is the Issue)
While the original poster's issue was on-site, if you find your name/date appearing in Google search results, your SEO plugin (like Yoast SEO or Rank Math) is likely involved. These plugins often have settings to control what metadata Google indexes.
- In your SEO plugin's settings, look for options related to Author Archives or Post Type Settings.
- You can usually set author archives to "noindex" to prevent Google from showing them.
- Also, check the schema markup generated by your plugin for products.
You can test your product URLs using Google's Rich Results Test to see what structured data Google detects.
EShopSet Team Comment
This discussion perfectly highlights a common friction point in ecommerce operations: the interplay between your core platform (WooCommerce), your theme, and SEO. We agree with the community consensus that checking theme settings first is paramount. For EShopSet users, this issue underscores the value of an effective integrations-stack. Having a robust set of apps that allow you to manage your storefront's display, monitor SEO performance, and even audit theme behavior can prevent these small but impactful inconsistencies from affecting your brand's professional image. It's a reminder that even if you're using advanced tools like a Wix AI product descriptions generator, you still need to actively manage how that content is presented on your site.
Beyond the Fix: Maintaining a Professional Storefront
Ultimately, this small issue of an author name appearing in product search results is a symptom of a larger concern: maintaining a consistent and professional brand image across your entire online store. Whether you're running on Shopify, WooCommerce, Magento, or Wix, every detail contributes to your customer's perception.
It's not just about what you sell, but how you present it. Just as a Shopify AI brand monitor might track your brand mentions and visual consistency, you, as a store owner, need to be your own first line of defense in monitoring your storefront's presentation. Regularly reviewing your site, including how search results appear, ensures that your brand narrative remains uninterrupted and that every interaction reinforces trust and professionalism. Keeping an eye on these details ensures your store always puts its best foot forward, allowing your products to shine without any unintended distractions.
