Can you help me to add infinity scroll in venue theme
Hello there
Please try this code
{% liquid
assign text_load_more = 'Load more'
assign text_showing_of = 'Showing [count] of [total] products'
%}
{% assign count = paginate.current_offset | plus: collection.products.size %}
{% assign total = paginate.items %}
{{ text_showing_of | replace: '[count]', count | replace: '[total]', total }}
{% assign progress_line_width = count | times: 100.0 | divided_by: total | round | append: '%' %}
{% if paginate.next %}
{% endif %}