Customisation Guide
In this guide we will update our store to output a link to the bundle page instead of an add to cart button for bundle product grid items.
In this guide:
We will duplicate and edit our stores theme code to replace bundle product add to cart buttons with a link to the product page.
Biscuits Bundles now has an App Embed to automatically detect and adjust Quick Add To Cart and Quick View Buttons.
Before we begin
Biscuits Bundle products require a form on a product page with component item selection to successfully add to cart. Quick add and quick view buttons on grid items don't allow for the display of this form and these selections. As a result your customer will try to click quick add to cart on a bundle grid item and be warned the product couldn't be added to cart.
This guide involves editing theme code. If that is not your cup of tea feel free to reach out to the Biscuits Bundle team to help you out!
1. Create a development theme
First we will create a development theme so any changes we make DON'T appear on your live store until we have tested and are happy with them.
Open Online Store > Themes in Shopify admin and click the three dot menu next to customise on your published theme, then choose "duplicate".
Click the three dot menu on this copied theme and rename it i.e "Dawn | Biscuits Customisation"
Then using the three dot menu again, click "edit code" on our new development theme.
2. Replace quick add buttons in themes code
Now we need to find the correct snippet file to edit in your theme.
Because every theme can be different, the file you edit for this step may vary a lot.
We are using Dawn theme for the example today but we will provide example files for other common themes below.
1. Find the right snippet file
Use the filter bar in the top left to search "product" and look inside the snippets folder
In Dawn the snippet we are looking for is card-product.liquid
You will know if you have the correct file by checking the top of the snippet for variables and a description explaining this file outputs the product card.
2. Find the quick add logic in the code
Once you have the correct file we need to search for where the quick add button is output. In Dawn it's output based on the variable quick_add
so we searched the file for that text and have found {% if quick_add == 'standard' %}
3. Wrap the quick add in our bundle product check
We are going to wrap this check in our own to ensure it outputs our code if the product is tagged "biscuits-bundle" and the regular add to cart if its a regular product.
Below is the code we will wrap the if statement in. There are a few things to note with this code
Notice how we are using
card_product
this may beproduct
in your themes snippet, you can normally confirm this by looking at the top variables of the file.We are wrapping our new button in a
div
calledquick-add
, this is the ensure the button sits in the same place as other grid itemsWe have added
button button--full-width button--secondary
classes to our button to ensure it matches the styling of our theme
Your themes code for quick add may vary, and button classes may be different. Please compare the button classes inside the quick add logic to ensure they match your new button link visually.
{% if card_product.tags contains 'biscuits-bundle' %}
<div class="quick-add">
<a href="{{ card_product.url }}" class="biscuits-bundle-view-button button button--full-width button--secondary">View bundle</a>
</div>
{% else %}
<!-- Themes quick add to cart logic outputs here -->
{% endif %}
It is a very big block of code to wrap in Dawn so our {% if card_product.tags contains 'biscuits-bundle' %}
is output on line 292 and our {% endif %}
is output around the line 548
Make sure you save the file once you have wrapped the quick add in our new tag check, then hit "preview store" in the top right corner.
Common themes product grid item snippet names
As of June 2024
Theme name | Snippet file name | What to search for in the file |
Dawn | card-product.liquid | {% if quick_add == 'standard' %} card_product.tags |
Prestige | product-card.liquid | {%- if show_quick_buy and product.available -%} product.tags |
Be Yours | card-product.liquid | {%- if show_quick_buy -%} card_product.tags |
Expanse | product-grid-item.liquid | {%- if settings.quick_add_enable or settings.quick_shop_enable -%} product.tags |
Pipeline | product-grid-item-variant.liquid | {%- if instant_add_button %} product.tags |
Impulse | product-grid-item.liquid | {%- if quick_shop_enable -%} product.tags |
Now we can check our storefront collection to see if our change worked.
Congrats if the add to cart button on your bundle grid item changes to a view bundle button and links through to your bundle product. Don't worry if it didn't, you may have tried the wrong file or wrong code to wrap. Undo your changes and try from step 2 again.
3. Publish development theme
Once you have tested your code changes on your development theme thoroughly, you can publish this theme to be live!
This will make your changes published and visible to your customers.
Conclusion
Thats it! If you made it to the end successfully well done! If not, don't be afraid to reach out to the Biscuits Bundle team for help.
Stuck or got questions?
Use the chat widget below, or reach out to us at [email protected]
Happy coding, and thanks for teaming up with Biscuits Bundles!