Hi John,
Which version of the Cart and DNN are you running?
Have you updated the TabModuleID of your Products?
The issue is most likely the TabModuleID assigned to the data being migrated from your previous store. The reason that TabModuleID is saved with product is so you can run multiple stores in your portal with unique categories and products. Also if you delete a BuyNow module and add it again to the page DNN will assign a different TabModuleID.
The easiest/fastest way to import your data after a data migration would be to do the following:
- Add your buynow module on your new page, where you want it.
- Add a single item to the products, so that it shows up on your new BuyNow module.
- Look in SQL Management studio, and jot down the TabModuleID for the new item.
- Update the data so your old items (with the incorrect TabModuleID) match the new TabModuleID
For Example:
UPDATE Smith_Products SET TabModuleID=(NewNumber) WHERE TabModuleID=(OldNumber)
UPDATE Smith_Category SET TabModuleID=(NewNumber) WHERE TabModuleID=(OldNumber)
UPDATE Smith_Product_Variants SET TabModuleID=(NewNumber) WHERE TabModuleID=(OldNumber)
UPDATE Smith_Manufacturers SET TabModuleID=(NewNumber) WHERE TabModuleID=(OldNumber)
UPDATE Smith_Orders SET TabModuleID=(NewNumber) WHERE TabModuleID=(OldNumber)
so on and so forth.
Hope this helps!