H
Asked
Hi
I did import product template with Arabic items name successfully, but the names appear like question mark sample, please help me to fix?
Thanks
I did import product template with Arabic items name successfully, but the names appear like question mark sample, please help me to fix?
Thanks
- MSAnsweredHello,
Please check your csv file encoding. Page has details for that. Csv file should be UTF8 encoded and saved without BOM.
Thank you - HAnsweredHi
It’s perfect now, still one thing, the slug take the same name data although it’s set to take the item code data, how to fix this?
Thanks - MSAnsweredHello,
Please edit `app/controllers/admin/Products.php` around line 1694
```
'slug' => $this->Settings->use_code_for_slug ? $this->sma->slug($value[1]) : $this->sma->slug($value[0]),
```
Thank you - MSAnsweredhi
I have this line
'slug' => $this->Settings->use_code_for_slug ? $this->sma->slug($value[1]) : $this->sma->slug($value[0]),
what shall I change to set the slug to be same as the barcode ? - MSAnsweredHello,
Please check your system settings and enable use code for slug.
Thank you - Login to Reply