Breadcrumbs and page titles
Removing the breadcrumbs block should not be very difficult since it is just one line in the /layout/page.xml
file. However, if you were to remove breadcrumbs by changing the /layout/page.xml
file it will adversely affect page titles, which may not be what you expect.
The underlying issue is related to Magento's built-in flexibility that allows breadcrumbs to be used with page titles. The breadcrumbs block needs to be part of the page in order for page titles to be processed correctly. Removing the breadcrumbs block will result in products and categories to show the default store title, unless a title is explicitly defined in the backend. Since the aim is to only remove breadcrumbs from the design, the safest option is to modify the breadcrumbs template file:
Read More