You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we have this extension installed, default sorting by position doesn't work.
Any idea how to tweak for this? Also sort by created_at only works if we use the following sql update:
UPDATE catalog_eav_attribute
SET used_for_sort_by = 1, is_searchable = 1
WHERE attribute_id = (
SELECT attribute_id FROM eav_attribute WHERE entity_type_id = (SELECT entity_type_id FROM eav_entity_type WHERE entity_model = 'catalog/product') AND attribute_code = 'created_at');
is_searchable = 1 --> is important
The text was updated successfully, but these errors were encountered:
When we have this extension installed, default sorting by position doesn't work.
Any idea how to tweak for this? Also sort by created_at only works if we use the following sql update:
UPDATE
catalog_eav_attribute
SET
used_for_sort_by
= 1,is_searchable
= 1WHERE attribute_id = (
SELECT attribute_id FROM
eav_attribute
WHEREentity_type_id
= (SELECTentity_type_id
FROMeav_entity_type
WHEREentity_model
= 'catalog/product') ANDattribute_code
= 'created_at');is_searchable
= 1 --> is importantThe text was updated successfully, but these errors were encountered: