Jump to content

rolinb

Members
  • Posts

    8
  • Joined

  • Last visited

1 Follower

Contact Methods

Profile Information

  • Location
    Orange County, California
  • First Name
    Rolin
  • Last Name
    Bass

Recent Profile Visitors

144 profile views

rolinb's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Thank you very much for your response, Prophit! So will adding 'SomeProducts' schema solve my Google Shopping listing problem so I don't have to remove '#' from Combination URLs? Or do you just recommend SomeProducts to address rel=canonical issue? Either way, I'd like to add it. I haven't used smarty boolean yet, would you mind sharing exactly how to add SomeProducts schema to Combination pages? Very informative link by the way... thank you!
  2. I originally posted this as a reply at https://www.prestashop.com/forums/topic/253383-how-to-remove-attribute-and-values-from-the-url/?p=2435454 because it seemed related, but it should have it's own thread too. We sell cable products, each cable product has approx 30 'Length' Combinations to choose from. We list these products in Google Merchant Center (Google Shopping)... each Combination is uploaded as its own product. A valid Google Shopping listing requires a link back to a page that shows that product at the same price displayed in Google Shopping. The "#/" feature work great for Lengths (i.e., domain.com/category/main-product#/length-4_meter). Google Merchant accepts it in the XML upload, however, the "#/" url is not indexed in Google Search because it looks like an Anchor links not a Page link. This caused Only the main cable product to be indexed and none of it's 30 Length options. The Main cable product is not a product by itself, it needs a Length... so Google Merchant randomly selects one of the 30 lengths to display in Google Shopping. Not good, my 1 random product swims in a sea of competitor 'Length' options with a random length between $9 - $700 in SERPs. Can someone with epic knowledge of PrestaShop confirm I can just remove "#" from "#/" in the snippet of product.js code below (theme/js/product.js) and then clear my cache? // build new request for (var i in attributesCombinations) for (var a in tab_attributes) if (attributesCombinations[i]['id_attribute'] === tab_attributes[a]) request += '/'+attributesCombinations[i]['group'] + attribute_anchor_separator + attributesCombinations[i]['attribute']; request = request.replace(request.substring(0, 1), '#/'); url = window.location + ''; Thanks in advance!
  3. We sell cable products, each cable product has approx 30 'Length' Combinations to choose from. We list these products in Google Merchant Center (Google Shopping) with each Combination its own product. A valid Google Shopping listing requires a link back to a page that shows that product at the same price as what it's listed at in Google. The "#/" feature in PrestaShop product links work great (i.e., domain.com/category/main-product#/length-4_meter). It links to the product and selects the combination automatically so the right price and product are displayed. However, 1 problem exists with PrestaShop's "#/" anchor tag feature... Google Merchant accepts it in the XML upload, but Google Search doesn't index the 'Length' combinations because it thinks they are Anchor links not Page links. Only the cables main product is indexed and it's not a product by itself, it needs a Length... so Google Merchant randomly selects one of the 30 lengths to display in Google Shopping. Google support tried to figure it out and found nothing wrong with my listing or XML, their official response was 'Spend more in AdWords and more lengths will appear'... Code for they have no clue. Can someone with epic knowledge of PrestaShop confirm I can just remove "#" from "#/" in the snippet of product.js code below (theme/js/product.js) and clear my cache? // build new request for (var i in attributesCombinations) for (var a in tab_attributes) if (attributesCombinations[i]['id_attribute'] === tab_attributes[a]) request += '/'+attributesCombinations[i]['group'] + attribute_anchor_separator + attributesCombinations[i]['attribute']; request = request.replace(request.substring(0, 1), '#/'); url = window.location + ''; Thanks in advance!
  4. I'm having the same problem in PS1.6.0.8. Google Merchant Center had a notification that most my products in PrestaShop were missing microdata for "Condition" when it is clearly there. I check the code in Google Webmaster Tools and it responded with the same error. Here's the snippet of code Webmaster Tools highlighted as being incorrect: <span class="editable" itemprop="condition"> New </span> All other microdata elements on the product pages work perfectly. Maybe the spaces before & after 'New' but I'm not sure how to remove them. Any thoughts?
  5. Thank you! I did see that in the Source but wanted to make sure it wasn't some setting in admin or template issue. Simply removing from the CSS can sometimes just hide the root problem. I felt much better about updating the css after seeing your comment. Thanks again!
  6. I cannot get the Voucher field to display in the Shopping Cart. Site URL: http://temp.fibercablesdirect.com The Cart Rule is setup in BO. If I remove Visitors and Guest from "Customer Group" I can now see under My Account >> Vouchers but still not in Shopping Cart. When I check 'Source' in browser I can see the Voucher information but nothing shows (IE or Chrome). Tried Deleting Cache, still nothing. Can someone check this for me?
×
×
  • Create New...