per4manz Posted July 10, 2005 Share Posted July 10, 2005 Everytime I upload a new file all products' status is set to Inactive even though it is Active in the text file. Is there a fix for this? Quote Link to comment Share on other sites More sharing options...
per4manz Posted July 11, 2005 Author Share Posted July 11, 2005 Answered my own question. For those who may encounter the same problem: If the product quantity is set to "0" in your txt/cvs file, the status of that product will be set to Inactive regardless of whether it is set to Active within the EP file. Quote Link to comment Share on other sites More sharing options...
CivicRacingGirl7 Posted July 12, 2005 Share Posted July 12, 2005 in your easypopulate.php file, change the following configuration setting if you want to leave quantity blank, or set to 0, but want the products to show as active: //**** Status Field Setting **** // Set the v_status field to "Inactive" if you want the status=0 in the system // Set the v_status field to "Delete" if you want to remove the item from the system <- THIS IS NOT WORKING YET! // If zero_qty_inactive is true, then items with zero qty will automatically be inactive in the store. global $active, $inactive, $zero_qty_inactive, $deleteit; $active = 'Active'; $inactive = 'Inactive'; //$deleteit = 'Delete'; // not functional yet $zero_qty_inactive = false; (it should be set at true, so change it to false) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.