Google isn't indexing products because the customer must log in before they can see the price. The site is (still) using Google Rich Snippets and this had been put in place:
All Google sees is
Obviously, Google isn't an authorized customer so it can't log in. Of course, the store owner doesn't want the prices shown. How do you go about getting the products indexed without a price? Is there something other than "Login" that can be used?
Code:
<mvt:if expr="g.basket:cust_id GT 0 AND g.customer:pgrpcount GT 0"> <meta itemprop="price" content="&mvte:product:formatted_price;" /> <mvt:else> <meta itemprop="price" content="Login" /> </mvt:if>
Code:
<meta itemprop="price" content="Login" />
Comment