I need impulse theme help
-
how to have bread crumbs in impulse theme.
-
how to customize side filter bar
Help requested for the Impulse Shopify theme on two items: enabling breadcrumbs (hierarchical navigation links) and customizing a side filter bar.
Breadcrumbs: One reply suggests first checking the Theme Customizer (Online Store > Themes > Customize) for any built-in “Breadcrumbs” setting. If unavailable, manually add breadcrumbs by editing code (Online Store > Themes > Actions > Edit code) and inserting a breadcrumb snippet into relevant templates (product.liquid, collection.liquid, page.liquid), typically under the header.
Code details: The provided snippet includes a conditional to exclude certain templates and a template variable assignment, but the actual breadcrumb markup/output is not included, so it is incomplete and would need additional code to render links.
Side filter bar: No guidance was given yet on customizing the side filter bar.
Status: No confirmed solution; action is to check theme settings or proceed with manual code edits. The code snippet is central but incomplete. Discussion remains open.
I need impulse theme help
how to have bread crumbs in impulse theme.
how to customize side filter bar
Hi @aroohi
Search for Breadcrumb Settings:
If the theme doesn’t have built-in breadcrumb functionality, you can add it by editing your theme’s code:
Edit Theme Code:
Locate the Template Files:
Add Breadcrumb Code:
{%- unless template == 'index' or template == 'cart' or template == 'list-collections' or template == '404' -%}
{%- assign t = template | split: '.' | first -%}
{%- endunless -%}