Skip to content

Commit

Permalink
Fix merging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Sipkao committed Jul 23, 2024
1 parent 4128208 commit 935f4b6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
1 change: 1 addition & 0 deletions sections/findify-grid-search.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
, color_layout: color_layout
, filter_component_id: findify_filters_component_id
%}
{% endif %}
{% render 'findify-toolbar-mobile'
, results_count: results_count
, terms: terms
Expand Down
29 changes: 14 additions & 15 deletions sections/findify-product-card.liquid
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{%- include 'findify-product-card-connector' -%}

<div
<div
id="{{ id }}"
product-id="product-{{ id }}"
product-id="product-{{ id }}"
class="findify-product-card {{ class }} {{ widget }}_{{ id }}"
{%if page != blank%}
page="{{ page }}"
{%endif%}
>
{% if page != blank %}
page="{{ page }}"
{% endif %}>
<a class="findify-product-link" href={{ product_url }}>
<div class='image-container'>
{% if current_variant.featured_media != null %}
Expand All @@ -24,8 +23,8 @@
, media: product.media[1]
, class: 'second-image' %}
{%- endif -%}
{% comment %} <img width="100%" height="100%" class="findify-product-swatch-image" hidden /> {% endcomment %}

{% comment %} <img width="100%" height="100%" class="findify-product-swatch-image" hidden /> {% endcomment %}
</div>
</a>
<div class="content-wrapper">
Expand All @@ -34,12 +33,12 @@
{% endif %}

{% comment %} {% render 'findify-product-swatches-color',
product_url: product_url,
product: product,
colormap: colormap,
variants: variants,
%} {% endcomment %}
product_url: product_url,
product: product,
colormap: colormap,
variants: variants,
%} {% endcomment %}

<a class="findify-product-link" href={{ product_url }}>
<div class='findify-product-title findify-cut-text'>
<label>{{ product.title }}</label>
Expand All @@ -65,4 +64,4 @@
initOnProductCardClick(id, page, { widget, selected_variant_id });
</script>

</div>
</div>

0 comments on commit 935f4b6

Please sign in to comment.