Search the Community
Showing results for tags 'feature value'.
-
Hello fellow developers! I am making a custom product import from customer's database into PrestaShop via webservice. I made a bunch of features into Back Office for all necessary product information. I've tried to investigate webservice documentation and API synopsis, but I haven't found how I...
- 1 reply
-
- webservice
- product feature
-
(and 1 more)
Tagged with:
-
Hi prestas, as it's really hard (or I'm too dump???) to find a full documentation of varibles etc for P.S. 1.7.x.x, I aski this here. I'm looking for the id of a pruduct's feature value. Not the ID of the feature, but of the choosen value. I found something like $feature.id_feature_value, but t...
- 2 replies
-
- feature id
- prestashop 1.7x
-
(and 1 more)
Tagged with:
-
I'm developing a module and extended AdminFeaturesController.php to display my custom field Add/Edit Feature Value, but it is showing following error in popup: Notice on line 719 in file D:\xampp\htdocs\prestashop16\tools\smarty\sysplugins\smarty_internal_templatebase.php(157) : eval()'d code [8]...
- 1 reply
-
- smarty
- custom field
-
(and 2 more)
Tagged with:
-
I have been struggling for the past four hours with the following problem. I'm trying to import a product via CSV, and the problem is that one of my product features has a colon ( : ), for example feature name: Artist feature value: various: christmas collection Normally the CSV should...
- 6 replies
-
- csv
- product import
-
(and 2 more)
Tagged with:
-
Greetings to all Is there anyway to display a single feature value of a product? I found a way to display it on a .tpl with this code: {foreach from=$features item=feature} {if $feature.name|escape:'htmlall':'UTF-8' == 'muestra'} {$feature.value|escape:'htmlall':'UTF-8'} {/if} {/forea...