Hi All,
Quick question, is there a way to have the "Shopping Options" Filter Open By Default?
Many Thanks
Scott
Solved! Go to Solution.
You need to Magento_LayeredNavigation/templates/layer/view.phtml to your theme folder.
Now change,
data-mage-init='{"accordion":{"openedState": "active", "collapsible": true, "active": false, "multipleCollapsible": false}}'
with,
data-mage-init='{"accordion":{"openedState": "active", "collapsible": true, "active": [0,1,2,3,4,5,6], "multipleCollapsible": false}}'
You need to Magento_LayeredNavigation/templates/layer/view.phtml to your theme folder.
Now change,
data-mage-init='{"accordion":{"openedState": "active", "collapsible": true, "active": false, "multipleCollapsible": false}}'
with,
data-mage-init='{"accordion":{"openedState": "active", "collapsible": true, "active": [0,1,2,3,4,5,6], "multipleCollapsible": false}}'
Thank You!!
I'd been playing with the view.phtml file without any success.
This solution worked great.
cheers Scott