Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Issue

Standard buy links embedded in a Wix.com site will always return the customer to the home page because the Wix catalog uses hash fragments to provide product catalog mapping.

...

1) Review the number of pages that are currently in Google. Search "site:yourhost.com" for example to see.
2) Determine how you will send (301) permanent redirects for the old URLs to all of the new URLs on the new site. Never let your content just 404.
3) Your new CMS should generate a sitemap file that can be registered immediately with Google Web Master Tools so that their crawler will be able to quickly observe the site changes.

 Frequently Asked Questions

Question: I'm trying to add a dropdown list and add to cart button to Wix. The issue is that HMTL can only be embedded into Wix as an iFrame so when I click on the add to cart button, the shopping cart landing page is stuck in the child frame.   Do you know a way that I can trigger the parent page to go to the shopping cart landing page?

Answer: Insert the form attribute target="_blank" into the form should force it to open into a new window 

Code Block
languagegroovy
themeDJango
<form action="https://secure.ultracart.com/cgi-bin/UCEditor" method="post" target="_blank">
  <input type="hidden" name="MERCHANTID" value="DEMO">
  <select name="ADD">    
    <option value=>Select Size</option>
    <option value="718122726455">Sale $49.95 Matte black</option>
    <option value="718122726653">Sale $49.95 Navy Blue</option>
  </select>
  <br>
  <input name="Add To Cart" type="image" src="https://secure.ultracart.com/cgi-bin/UCGraphic?merchantId=DEMO&Filename=addToCart_ultracart.gif
" border="0">
</form>