Hi @ZoeM_1
Google has a really advanced algorithms and their bot can crawl almost everything on your site. Even if you remove structured data or hide the price visually, search engines MAY still crawl the raw HTML source code and extract the price details directly.
However, there are some workarounds and tricks to hide the price.
For your case, you need to check if the “web-pixels-manager-setup” script contains price data:
- Open your website with developer tools (Ctrl + Shift + C).
- Search for “web-pixels-manager-setup” in the Elements or Sources tab. For instance: https://prnt.sc/cxyKDvnr1YqH
- Inspect the script to check how it embeds price data (e.g., JavaScript variables, APIs, or direct page writing).
If the “web-pixels-manager-setup” script is adding the price, you can either:
- Edit its configuration or disable it entirely (this might depend on your Shopify app setup).
- In the Shopify Admin Panel, go to Settings > Apps and Sales Channels. Look for third-party apps related to pixels or analytics and adjust their settings to exclude price data.
If it doesn’t work, here are some techniques that can reduces the chance of prices being crawled:
1. Wrap Price Data in a No-Index Block
Google allows you to prevent specific parts of a page from being shown in search results (e.g., the price), while still allowing the page itself to be indexed, you can try this code:
*<div data-nosnippet>*
*<span class="price">$99.99</span>*
*</div>*
The content inside data-nosnippet will not appear in Google’s snippet, but the page will still be indexed
2. Make the price less visible to crawlers by using JavaScript or images.
As Google prioritizes static HTML to crawl, you can load the price dynamically using JavaScript to avoid exposing it to crawlers while still displaying it to users
Or you can display the price as part of an image instead of text, bot may have difficulty reading text from images
3. Wait for Google …
After making changes, it may take time for Google to reflect them. Use Google Search Console to request re-indexing of affected pages.
Let me know if any of these methods are working for you
Best regards,
Daisy.