I would like please your help. I am newbie on Magento 2 and still searching things. I would like to move breadcrumb before title (on category pages, product everywhere). I tried to change it on default.xml <move element="page.main.title" destination="page.top" after="breadcrumbs"/>
but with no luck.
Also i tried to do it from catalog_category_view.xml on vendor/magento/module-catalog/view/frontend/layout but no luck. Can anyone please guide me where can I find the order that is loading?
Can you please help? Thank you in advance
2
Answers
Try this,
One should not call a title from a breadcrumbs template as this breaks independence.
Instead simply move breadcrumbs on top of main.content container.
<move element="breadcrumbs" destination="main.content" before="-"/>
You can find more info on this at Magento official documentation here : Magento 2 – Reorder recommendation units