Jump to content

CSV Import for Product Dimensions (Width, Depth and Height) on 1.4.6.2


Recommended Posts

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

  • 7 months later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...