[object Object]

← back to Dw Theme Compact Toolbar

auto-data-snapshot: 2026-09-03T12:32:21 (2 data files) — snippets/hide-browse-hidden.liquid.pre-showroom snippets/product-list-item.liquid.pre-showroom

c82e6bfeaf1dc604de27353b8a6a878cf4e6fe1a · 2026-09-03 12:33:03 -0700 · auto-commit-fleet

Files touched

Diff

commit c82e6bfeaf1dc604de27353b8a6a878cf4e6fe1a
Author: auto-commit-fleet <steve@designerwallcoverings.com>
Date:   Thu Sep 3 12:33:03 2026 -0700

    auto-data-snapshot: 2026-09-03T12:32:21 (2 data files) — snippets/hide-browse-hidden.liquid.pre-showroom snippets/product-list-item.liquid.pre-showroom
---
 snippets/hide-browse-hidden.liquid.pre-showroom |  52 ------
 snippets/product-list-item.liquid.pre-showroom  | 205 ------------------------
 2 files changed, 257 deletions(-)

diff --git a/snippets/hide-browse-hidden.liquid.pre-showroom b/snippets/hide-browse-hidden.liquid.pre-showroom
deleted file mode 100644
index a827be6..0000000
--- a/snippets/hide-browse-hidden.liquid.pre-showroom
+++ /dev/null
@@ -1,52 +0,0 @@
-{% comment %}
-  Hide browse-hidden products (Phillip Jeffries) from ALL rendered grids.
-  Runs repeatedly to catch Boost pagination, filtering, and AJAX loads.
-{% endcomment %}
-<script>
-(function(){
-  var HIDDEN_VENDORS = ['Phillip Jeffries'];
-
-  function hideProducts() {
-    // Method 1: Find vendor text elements
-    document.querySelectorAll('.product-vendor, .product-list-item-vendor, [class*="vendor"]').forEach(function(el) {
-      var text = el.textContent.trim();
-      if (HIDDEN_VENDORS.indexOf(text) > -1) {
-        var card = el.closest('.product-list-item, .boost-sd__product-item, [class*="product-item"], [class*="product-card"], article, .boost-sd__product');
-        if (card && card.style.display !== 'none') { card.style.display = 'none'; }
-      }
-    });
-
-    // Method 2: Find product titles containing vendor name
-    document.querySelectorAll('.product-list-item-title a, .boost-sd__product-title a, [class*="product-title"] a, h2 a, h3 a').forEach(function(el) {
-      var text = el.textContent.trim();
-      for (var i = 0; i < HIDDEN_VENDORS.length; i++) {
-        if (text.indexOf(HIDDEN_VENDORS[i]) > -1) {
-          var card = el.closest('.product-list-item, .boost-sd__product-item, [class*="product-item"], [class*="product-card"], article, .boost-sd__product');
-          if (card && card.style.display !== 'none') { card.style.display = 'none'; }
-          break;
-        }
-      }
-    });
-
-    // Method 3: Check Boost's JSON data in script tags
-    document.querySelectorAll('[data-vendor="Phillip Jeffries"]').forEach(function(el) {
-      el.style.display = 'none';
-    });
-  }
-
-  // Run immediately
-  hideProducts();
-
-  // Run after DOM ready
-  if (document.readyState === 'loading') {
-    document.addEventListener('DOMContentLoaded', function() { hideProducts(); });
-  }
-
-  // Run every 2 seconds to catch Boost pagination/AJAX loads
-  setInterval(hideProducts, 2000);
-
-  // MutationObserver as additional safety
-  var observer = new MutationObserver(function() { setTimeout(hideProducts, 100); });
-  observer.observe(document.body, { childList: true, subtree: true });
-})();
-</script>
diff --git a/snippets/product-list-item.liquid.pre-showroom b/snippets/product-list-item.liquid.pre-showroom
deleted file mode 100644
index 921a4fa..0000000
--- a/snippets/product-list-item.liquid.pre-showroom
+++ /dev/null
@@ -1,205 +0,0 @@
-{% comment %}
-  @param product_attributes
-    custom attributes to be applied to the product item
-    Defaults to: blank
-{% endcomment %}
-
-{% liquid
-  assign product_attributes = product_attributes | default: ''
-  assign product_hover = settings.product_hover |  default: 'quick-shop'
-  assign product_stock_level_threshold = settings.product_stock_level_threshold | default: 1
-  assign product_badges = settings.product_badges | default: false
-  assign product_icons = settings.product_badges_icons | default: false
-  assign product_vendor = settings.show_vendor | default: false
-
-  assign item = product
-  if template contains 'search'
-    assign item = item
-  endif
-
-  assign has_quick_shop = false
-  if product_hover == 'quick-shop' and template.name != 'password' and product.variants_count <= 250
-    assign has_quick_shop = true
-  endif
-%}
-
-{% if product_hover == 'stock-level' and item.available %}
-  {% assign total = 0 %}
-  {% assign threshold = product_stock_level_threshold | times: 1 %}
-  {% assign infinity = false %}
-  {% for variant in item.variants %}
-    {% if variant.inventory_management == null %}
-      {% assign infinity = true %}
-    {% elsif variant.inventory_management == '' %}
-      {% assign infinity = true %}
-    {% elsif variant.inventory_management == 'shopify' and variant.inventory_policy == 'continue' %}
-      {% assign infinity = true %}
-    {% elsif infinity == false %}
-      {% capture temp %}{{ total | plus: variant.inventory_quantity }}{% endcapture %}
-      {% assign total = temp | times: 1 %}
-    {% endif %}
-  {% endfor %}
-  {% assign stockText = 'products.product.stock_indicator_message' | t: num: total %}
-{% endif %}
-
-<article
-  class="
-    product-list-item
-    {% if has_quick_shop %} has-quick-shop{% endif %}
-    {% if item.available and infinity == false and total <= threshold %} has-stock-indicator{%endif %}
-  "
-  id="product-list-item-{{ item.id }}"
-  data-product-id="{{ item.id }}"
-  {{ product_attributes }}
->
-
-  {% assign secondaryImage = false %}
-  {% if item.media.size > 1 and product_hover == 'image-flip' %}
-    {% assign secondaryImage = true %}
-  {% endif %}
-
-  <figure
-    class="
-      product-list-item-thumbnail
-      {% if secondaryImage %}
-        has-secondary-image
-      {% endif %}
-    "
-    data-url="{{ item.url | within: collection }}"
-    {% if secondaryImage %}
-      {%
-        render 'rimg',
-        img: item.media[1].preview_image,
-        alt: item.media[1].preview_image.alt,
-        size: '600x600',
-        background: true,
-        lazy: true
-      %}
-    {% endif %}
-  >
-    <a href="{{ item.url | within: collection }}" aria-label="{{ item.title }}">
-      {% if item.featured_media.preview_image %}
-        {%
-          render 'rimg',
-          img: item.featured_media.preview_image,
-          alt: item.featured_media.preview_image.alt,
-          size: '600x600',
-          lazy: true
-        %}
-      {% else %}
-        {{ 'product-1' | placeholder_svg_tag: 'placeholder-svg' }}
-      {% endif %}
-
-      <div class="product-info">
-        <div class="vertical-center">
-          <div>View Pattern</div>
-          {%- liquid
-            assign sku_raw = item.variants.last.sku | default: ''
-            assign sku_display = sku_raw | replace: '-Sample', '' | replace: '-SAMPLE', '' | replace: '-sample', ''
-            assign sku_display = sku_display | replace: '--', '-' | replace: '--', '-'
-            assign sku_last_char = sku_display | slice: -1, 1
-            if sku_display != blank and sku_last_char == '-'
-              assign sku_display = sku_display | remove_last: '-'
-            endif
-          -%}
-          <div>{{ sku_display }}</div>
-        </div>
-      </div>
-      
-    </a>
-
-    {% if has_quick_shop %}
-      <span
-        class="quick-shop-modal-trigger"
-        data-product-url="{{ item.url | within: collection }}"
-      >
-        {{ 'products.product.quick_shop_trigger_text' | t }}
-      </span>
-    {% elsif product_hover == 'stock-level' %}
-
-      {% if item.available and infinity == false and total <= threshold %}
-        <a class="product-list-item-inventory" href="{{ item.url }}">{{ stockText }}</a>
-      {% endif %}
-
-    {% endif %}
-
-    {% if product_badges %}
-      {% if item.available != true %}
-        <span class="product-list-item-unavailable{% if product_icons %} product-icons{% endif %}" data-title="{{ 'products.product.sold_out' | t }}"></span>
-      {% elsif item.compare_at_price_min > item.price_min %}
-        <span class="product-list-item-on-sale{% if product_icons %} product-icons{% endif %}" data-title="{{ 'products.product.on_sale' | t }}"></span>
-      {% endif %}
-    {% endif %}
-  </figure>
-
-  <div class="product-list-item-details">
-    {% if product_vendor %}
-      <p class="product-list-item-vendor">{{ item.vendor | link_to_vendor }}</p>
-    {% endif %}
-    <h2 class="product-list-item-title"><a href="{{ item.url | within: collection }}">{{ item.title }}</a></h2>
-    <p class="product-list-item-price">
-      {% if item.price_varies %}
-        {% if item.price_varies %}{{ 'products.product.from' | t }}{% endif %}
-        {% if item.compare_at_price_min > item.price_min %}
-          <span class="money">{{ item.price_min | money }}</span>
-          <span class="original money">{{ item.compare_at_price_min | money }}</span>
-        {% else %}
-          <span class="money">{{ item.price_min | money }}</span>
-        {% endif %}
-      {% else %}
-        {% if item.compare_at_price_min > item.price_min %}
-          <span class="money">{{ item.price_min | money }}</span>
-          <span class="original money">{{ item.compare_at_price_min | money }}</span>
-        {% else %}
-          <span class="money">{{ item.price_min | money }}</span>
-        {% endif %}
-      {% endif %}
-    </p>
-    {% assign variant_for_unit_price = item.variants | sort: 'price' | first %}
-    {% if variant_for_unit_price.unit_price %}
-      {% comment %}Inject unit-price begin{% endcomment %}
-      {% comment %}
-        @param variant_for_unit_price
-          Product variant for price
-        @param tax_text
-          String containing 'tax included' text
-      {% endcomment %}
-      
-      {% capture total_quantity %}
-        <span class="product-price__unit-price-total-quantity" data-unit-price-quantity>
-          {{ variant_for_unit_price.unit_price_measurement.quantity_value }}{{ variant_for_unit_price.unit_price_measurement.quantity_unit }}
-        </span>
-      {% endcapture %}
-      
-      
-      {% capture unit_price %}
-        <span class="product-price__unit-price-amount money" data-unit-price-amount>
-          {{ variant_for_unit_price.unit_price | money }}
-        </span>
-      {% endcapture %}
-      {% capture unit_measure %}
-        <span class="product-price__unit-price-measure" data-unit-price-measure>
-          {%- if variant_for_unit_price.unit_price_measurement.reference_value != 1 -%}
-            {{ variant_for_unit_price.unit_price_measurement.reference_value }}
-          {%- endif %}
-          {{ variant_for_unit_price.unit_price_measurement.reference_unit }}
-        </span>
-      {% endcapture %}
-      
-      <div
-        class="
-          product-price__unit-price
-          {% unless variant_for_unit_price.unit_price_measurement %}hidden{% endunless %}
-        "
-        data-unit-price
-      >
-        {{ 'products.product.price_per_unit_html' | t: total_quantity: total_quantity, unit_price: unit_price, unit_measure: unit_measure | strip_newlines }}
-      </div>
-      
-      {% assign variant_for_unit_price = blank %}
-      {% comment %}Inject unit-price end{% endcomment %}
-
-    {% endif %}
-  </div>
-
-</article>
\ No newline at end of file

← 58f25aa TK-11186: data-driven showroom-vendor suppression — render-t  ·  back to Dw Theme Compact Toolbar  ·  TK-11788: retire dw-theme-compact-toolbar as a deploy source 23d603a →