A user wants to display the full navigation path in breadcrumbs on their Focal Theme Shopify store, rather than just showing Home → Current Page. Currently, the breadcrumb trail doesn’t include intermediate collection pages.
Proposed Solutions:
Third-party apps: Install breadcrumb apps from the Shopify App Store (Category Breadcrumbs Uncomplicated, Schema Breadcrumbs)
Custom code implementations: Multiple code snippets were shared:
A comprehensive Liquid template covering products, collections, blogs, and articles
CSS modifications to hide default breadcrumbs and adjust spacing
A simpler solution adding product type to the breadcrumb path (Home → All Products → Product Type → Product)
Key Requirements:
For code solutions to work properly, users need to create a main-menu in navigation that the breadcrumb script can reference.
Status:
The original poster hasn’t successfully implemented any solution and prefers avoiding apps. Another user reported success using a tutorial from codethatconverts.com combined with custom CSS. The discussion remains open with working solutions available but not yet adopted by the original poster.
Summarized with AI on October 24.
AI used: claude-sonnet-4-5-20250929.
I recommend logging in and getting additional access to the update.
Then I add the short code below in to theme.css file as well for this issue:
.shopify-section–main-product .product{
margin-top:3.5em;
}
.breadcrumb {
display: none;
}
Using this method, for the breadcrumbs to work correctly, you need to create a main-menu in the navigation.This navigation will be referenced by this code script.
being new to shopify, I find it hard to believe there is no better support for breadcrumbs. I went for a simple solution and added this code to main-product.liquid . Maybe someone else finds it useful.