Hi,
I am wanting to put the previous and next arrows to navigate through the previous and next products respectively.
I am using the Craft theme.
Can anyone help me do this?
Thanks
Niki
Hi,
I am wanting to put the previous and next arrows to navigate through the previous and next products respectively.
I am using the Craft theme.
Can anyone help me do this?
Thanks
Niki
Hi @fermeindia
It will only work when url contains collection handle
1: Online store > themes > Actions > Edit code > sections > main-product.liquid
2: paste code at the position you want to place
{% if collection.previous_product %}
{{ 'Previous' | link_to: collection.previous_product.url, 'Previous product' }}
{% endif %}
{% if collection.next_product %}
{{ 'Next' | link_to: collection.next_product.url, 'Next product' }}
{% endif %}
Thank you but how do we add the collection handle to the product URL?
when you click product on collection page, it usually bring the collection handle together
if not you can add it like this
for example in Craf theme
1: Online store > themes > Actions > Edit code > Snippets > card-product.liquid
2:
replace
{{ card_product.url }}
with
{{ card_product.url | within: collection }}
Hello,
I tried both solutions but still, I can’t get the collection in the product URL, and (maybe that’s why) no display of the next & previous buttons.
Any clue as to where I am wrong?
Thanks in advance.
I did test it on Craft theme.
maybe share your ‘card-product.liquid’……
{% comment %}
Renders a product card
Accepts:
Usage:
{% render ‘card-product’, show_vendor: section.settings.show_vendor %}
{% endcomment %}
{{ ‘component-rating.css’ | asset_url | stylesheet_tag }}
{%- if card_product and card_product != empty -%}
{%- liquid
assign ratio = 1
if card_product.featured_media and media_aspect_ratio == ‘portrait’
assign ratio = 0.8
elsif card_product.featured_media and media_aspect_ratio == ‘adapt’
assign ratio = card_product.featured_media.aspect_ratio
endif
if ratio == 0 or ratio == nil
assign ratio = 1
endif
-%}
{%- if card_product.media[1] != nil and show_secondary_image -%}
<img
srcset=“{%- if card_product.media[1].width >= 165 -%}{{ card_product.media[1] | image_url: width: 165 }} 165w,{%- endif -%}
{%- if card_product.media[1].width >= 360 -%}{{ card_product.media[1] | image_url: width: 360 }} 360w,{%- endif -%}
{%- if card_product.media[1].width >= 533 -%}{{ card_product.media[1] | image_url: width: 533 }} 533w,{%- endif -%}
{%- if card_product.media[1].width >= 720 -%}{{ card_product.media[1] | image_url: width: 720 }} 720w,{%- endif -%}
{%- if card_product.media[1].width >= 940 -%}{{ card_product.media[1] | image_url: width: 940 }} 940w,{%- endif -%}
{%- if card_product.media[1].width >= 1066 -%}{{ card_product.media[1] | image_url: width: 1066 }} 1066w,{%- endif -%}
{{ card_product.media[1] | image_url }} {{ card_product.media[1].width }}w”
src=“{{ card_product.media[1] | image_url: width: 533 }}”
sizes=“(min-width: {{ settings.page_width }}px) {{ settings.page_width | minus: 130 | divided_by: 4 }}px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)”
alt=“”
class=“motion-reduce”
loading=“lazy”
width=“{{ card_product.media[1].width }}”
height=“{{ card_product.media[1].height }}”
{%- endif -%}
{{ block.settings.description | escape }}
{%- if show_rating and card_product.metafields.reviews.rating.value != blank -%}
{% liquid
assign rating_decimal = 0
assign decimal = card_product.metafields.reviews.rating.value.rating | modulo: 1
if decimal >= 0.3 and decimal <= 0.7
assign rating_decimal = 0.5
elsif decimal > 0.7
assign rating_decimal = 1
endif
%}
{{ card_product.metafields.reviews.rating.value }} / {{ card_product.metafields.reviews.rating.value.scale_max }}
({{ card_product.metafields.reviews.rating_count }}) {{ card_product.metafields.reviews.rating_count }} {{ "accessibility.total_reviews" | t }}
{%- endif -%}{% render ‘price’, product: card_product, price_class: ‘’ %}
can you share or DM me your store url? as the code you paste here I see you have edited, but it still not working right? so I need to check on your store
password needed
skisti
pwd ^
https://3b6cb9.myshopify.com/collections/featured-frames
it works, unless for ‘/collections/all’.
thank you but why isn’t it working for other collections? any idea?
you are welcome.
it’s working for other collections too. you can try it.
just not working for this one https://3b6cb9.myshopify.com/collections/all I think you just test on this page before. it’s more like all products, not collection.
if it’s helpful pls accept as solution, thx ![]()
Thank you for your patience and solutions ![]()
Really appreciate it.
Hi this solution is great, I have implemented the code and the buttons are visible and working. Any suggestions on how to change the alignment, color or boldness of the buttons?
Thanks