gbaughma wrote:
A simpler way is this:
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 ModuleID for the new item.
Update the data so your old items (with the incorrect ModuleID) match the new ModuleID, like this:
UPDATE Smith_Products SET ModuleID=(NewNumber) WHERE ModuleID=(OldNumber)
I also have product categories, manufacturers, ect.... So I assume I can do the following as well:
UPDATE Smith_Categories SET ModuleID=(NewNumber) WHERE ModuleID=(OldNumber)
UPDATE Smith_Product_Variants SET ModuleID=(NewNumber) WHERE ModuleID=(OldNumber)
UPDATE Smith_Manufacturers SET ModuleID=(NewNumber) WHERE ModuleID=(OldNumber)
UPDATE Smith_Orders SET ModuleID=(NewNumber) WHERE ModuleID=(OldNumber)
so on and so forth... correct?