Clean Up Your Product Listings: How to Remove Author & Date Meta from E-commerce Search
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 store owners across platforms like WooCommerce, Shopify, Magento, and PrestaShop. This seemingly minor detail can detract from a professional storefront and confuse customers. It recently sparked a lively discussion in an online community, highlighting a widespread need for clarity on this topic. 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 core e-commerce platforms like WooCommerce itself, but rather a quirk of how many WordPress themes often handle different 'post types'. As a helpful community member pointed out, 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 or single product pages.
While the original poster clarified their issue was on their own site's search results, solutions for both on-site and external search engines like Google were discussed, offering a comprehensive look:
- If it's on your own site, it's almost certainly your theme's default display settings.
- If it's in Google's search results, it could be your theme, an SEO plugin's settings, or even cached data Google pulled before the issue was resolved.
Step-by-Step Solutions to Clean Up Your Product Listings
Addressing this issue involves a few potential avenues, ranging from simple theme settings to more advanced code adjustments. Always start with the easiest options first.
1. Check Your Theme Settings (The Easiest Fix)
This is overwhelmingly the most common culprit and the first place to look. Many modern themes offer toggles to control the display of various elements, including post meta data. Navigate to your theme's customization options:
- Go to Appearance > Customize in your WordPress dashboard.
- Look for sections like WooCommerce, Product Catalog, Single Product, Blog Settings, or general Layout/Display options.
- Search for settings related to "Display post meta," "Author," "Date," "Posted by," or "Product Information."
- Disable these options for product pages or archives.
A community member using the Kallyas theme, for example, would find these settings within their theme's specific options. This approach is often applicable to other platforms too; for instance, BigCommerce or Shopify themes often have similar customization panels.
2. Add Custom CSS (For Display Only)
If theme settings don't offer a direct toggle, custom CSS can hide the elements from view. This doesn't remove the data, but it prevents it from being displayed to your visitors.
- Go to Appearance > Customize > Additional CSS.
- Add the following CSS snippet:
.woocommerce ul.products li.product .posted_on, .author { display: none; }
This snippet specifically targets the author and date meta on WooCommerce product listings. You might need to inspect your site's elements to find the exact CSS classes if your theme uses different ones.
3. Modify Your Theme's Functions.php (Advanced)
For a more robust solution, particularly if you want to prevent author archives from being indexed or to remove the data at a deeper level, you can add code to your theme's functions.php file. Important: Always use a child theme or a dedicated code snippet plugin (like FluentSnippets, as recommended by a community member) for any functions.php modifications. Direct edits will be lost with theme updates.
Here are some examples of code snippets shared in the community that can help:
- To 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;
} );
- To redirect author archive URLs to the homepage (prevents username enumeration and indexing of author pages):
add_action( 'template_redirect', function() {
if ( is_author() ) {
wp_safe_redirect( home_url() );
exit;
}
} );
4. Address External Search Engine Results (Google, Bing, etc.)
If your name or date is appearing in Google's search snippets, the solution involves both on-site fixes and SEO plugin configurations:
- SEO Plugins: If you're using plugins like Yoast SEO or Rank Math, check their settings. You can usually disable or 'noindex' author archives and ensure product schema doesn't inadvertently include author data.
- Structured Data: Google can pull information from structured data. Use Google's Rich Results Test to see what schema Google detects for your product URLs. Ensure your product schema is clean and doesn't include unwanted author or date fields.
- Recrawling: After making changes, Google needs time to re-crawl your site and update its search results. You can request re-indexing for specific URLs in Google Search Console.
EShopSet: Streamlining Your E-commerce Operations
Managing the intricacies of an e-commerce store, from theme settings to SEO, can be complex. This issue of stray metadata highlights the need for robust tools and a clear understanding of your store's configuration. EShopSet simplifies this by offering an apps-first commerce operations bundle designed for store owners.
While EShopSet doesn't directly edit your theme's CSS, it provides the ecosystem to discover and manage apps that ensure your store runs smoothly and professionally. For example, ensuring clean product data is crucial, whether you're dealing with display issues or performing a PrestaShop site diagnostic tool check. Our marketplace offers apps that can help with everything from SEO monitoring to catalog synchronization, ensuring your product data is consistent and optimized across all channels. For merchants needing to manage their product catalog efficiently, especially those with large inventories, apps for PrestaShop product file sync can be invaluable, ensuring accurate and clean data is always presented.
By centralizing your store's operational apps, EShopSet helps you maintain a pristine online presence, allowing you to focus on selling, not troubleshooting display quirks. Explore our app marketplace to find solutions for SEO, uptime monitoring, security, and more, all designed to keep your store professional and performing at its best.
Conclusion
The appearance of author names and dates in your e-commerce product search results is a common issue, often stemming from theme defaults rather than a core platform problem. By systematically checking your theme settings, applying custom CSS, or implementing code snippets, you can easily clean up your product listings and present a more polished, professional storefront. Remember, a clean product display not only enhances user experience but also contributes to better SEO and overall brand perception.
