Jump to content

Edit History

Ronnie79

Ronnie79

On 12/13/2025 at 9:23 PM, WisQQ said:

it's a bit tricky, import works but you need to set attributes properly. During import prestashop will create the missing attributes or assing existing ones.
it goes like that
attributegroupname:type:position(ordering of the group);attributevalues:position(ordering of values)
example:
Size:radio:0;S:0
T-shirt color:color:0;RED:0

You can combine these to make proper variant:
Size:radio:0,T-shirt color:color:1;S:0,RED:1

but you have to remember about position otherwise presta will create new value inside wrong group:

if you want to export that you would need to make a query that combines tables like:

  • attribute
  • attribute_lang
  • attribute_group
  • attribute_group_lang
  • product_attribute_combination

I made similar query for product listing but it will require adjustments. It all depends on what structure you need.

Thanks a lot! I will figure out how to make a query😊

----

BTW Anyone know how to remove/hide my email in the frontside footer? 
I did it a few testinstallations ago but now I don't remember how🤣 just that it only was a few clicks in somewhere rather odd place in the backend.

EDIT: Finally found it. Module Manager > Contact Information > Display e-mail - no

Ronnie79

Ronnie79

On 12/13/2025 at 9:23 PM, WisQQ said:

it's a bit tricky, import works but you need to set attributes properly. During import prestashop will create the missing attributes or assing existing ones.
it goes like that
attributegroupname:type:position(ordering of the group);attributevalues:position(ordering of values)
example:
Size:radio:0;S:0
T-shirt color:color:0;RED:0

You can combine these to make proper variant:
Size:radio:0,T-shirt color:color:1;S:0,RED:1

but you have to remember about position otherwise presta will create new value inside wrong group:

if you want to export that you would need to make a query that combines tables like:

  • attribute
  • attribute_lang
  • attribute_group
  • attribute_group_lang
  • product_attribute_combination

I made similar query for product listing but it will require adjustments. It all depends on what structure you need.

Thanks a lot! I will figure out how to make a query😊

BTW Anyone know how to remove/hide my email in the frontside footer? 
I did it a few testinstallations ago but now I don't remember how🤣 just that it only was a few clicks in somewhere rather odd place in the backend.

EDIT: Finally found it. Module Manager > Contact Information > Display e-mail - no

Ronnie79

Ronnie79

On 12/13/2025 at 9:23 PM, WisQQ said:

it's a bit tricky, import works but you need to set attributes properly. During import prestashop will create the missing attributes or assing existing ones.
it goes like that
attributegroupname:type:position(ordering of the group);attributevalues:position(ordering of values)
example:
Size:radio:0;S:0
T-shirt color:color:0;RED:0

You can combine these to make proper variant:
Size:radio:0,T-shirt color:color:1;S:0,RED:1

but you have to remember about position otherwise presta will create new value inside wrong group:

if you want to export that you would need to make a query that combines tables like:

  • attribute
  • attribute_lang
  • attribute_group
  • attribute_group_lang
  • product_attribute_combination

I made similar query for product listing but it will require adjustments. It all depends on what structure you need.

Thanks a lot! I will figure out how to make a query😊

BTW Anyone know how to remove/hide my email in the frontside footer? 
I did it a few testinstallations ago but now I don't remember how🤣 just that it only was a few clicks in somewhere rather odd place in the backend.

Ronnie79

Ronnie79

On 12/13/2025 at 9:23 PM, WisQQ said:

it's a bit tricky, import works but you need to set attributes properly. During import prestashop will create the missing attributes or assing existing ones.
it goes like that
attributegroupname:type:position(ordering of the group);attributevalues:position(ordering of values)
example:
Size:radio:0;S:0
T-shirt color:color:0;RED:0

You can combine these to make proper variant:
Size:radio:0,T-shirt color:color:1;S:0,RED:1

but you have to remember about position otherwise presta will create new value inside wrong group:

if you want to export that you would need to make a query that combines tables like:

  • attribute
  • attribute_lang
  • attribute_group
  • attribute_group_lang
  • product_attribute_combination

I made similar query for product listing but it will require adjustments. It all depends on what structure you need.

Thanks a lot! I will figure out how to make a query😊

×
×
  • Create New...