Skip to content
View ed-codes's full-sized avatar
Block or Report

Block or report ed-codes

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Recommend / Related products Recommend / Related products
    1
    <!-- Tag products with recommend_product-handle --> 
    2
    
                  
    3
    <div class="recommended-products">
    4
      {% for tag in product.tags %}
    5
        {% if tag contains 'recommend_' %}
  2. dominant-color.liquid dominant-color.liquid
    1
    <!-- Get the overall dominant color of an image to use as pre-lazyload or similar. -->
    2
    {% assign dominant_color_image = image | img_url: '1x' %}
    3
    <!-- Stretch it out and you basically have an extremeley blurry version of the image. -->
  3. get-text-from-comment.liquid get-text-from-comment.liquid
    1
    When doing something like <!--video-id:abcabc-->
    2
    
                  
    3
    {% assign video-id = collection.description | split: 'video-id:' | last | split: '-->' | first %}
    4
    
                  
    5
    When you need multiple and dont know how many,