Tiestarian Posted February 20, 2012 Share Posted February 20, 2012 As the title says, I'm trying to figure out how to add width, depth, and height to the csv product import on PrestaShop 1.4.6.2. These fields are just listed as: Width (package) Height (package) Depth (package) When adding products manually in the back office, so I can't see any reason for them not being included on the product import spreadsheet in separate columns? Is this possible and I'm just missing something? Thanks in advance! Link to comment Share on other sites More sharing options...
Petr Dědina Posted September 25, 2012 Share Posted September 25, 2012 presta 1.4.8.2 try this: open yourshop/your-admin/tabs/AdminImport.php: looking for: 'weight' => array('label' => $this->l('Weight')), about line 97 'weight' => 0, about line 115 'weight' => array('label' => $this->l('Weight')), about line 168 copy and paste this line and rewrite weight -> width or depth or enythig what is in your db. Like as: 'weight' => array('label' => $this->l('Weight')), about line 168 'Width' => array('label' => $this->l('Width')), about line 169 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now