Skip to content

Instantly share code, notes, and snippets.

@yesiddg
yesiddg / _rem.scss
Last active January 21, 2022 21:12
Rem sass helper
// Based on: https://gist.github.com/kaplas/5563787
@function strip-units($number) {
@return $number / ($number * 0 + 1);
}
@function rem($x, $fallback:false) {
@if type-of($x) != "number" or $x == 0 {
@return $x;
} @else {
@yesiddg
yesiddg / shopify_countries_en.csv
Created January 9, 2020 21:01
List of codes and countries of the world in alphabetical order used in Shopify in english.
Code Country
AF Afghanistan
AX Aland Islands
AL Albania
DZ Algeria
AD Andorra
AO Angola
AI Anguilla
AG Antigua And Barbuda
AR Argentina
@yesiddg
yesiddg / shopify_countries_es.csv
Created January 9, 2020 21:00
List of codes and countries of the world in alphabetical order used in Shopify in spanish.
Código País
AF Afganistán
AL Albania
DE Alemania
AD Andorra
AO Angola
AI Anguila
AG Antigua y Barbuda
SA Arabia Saudí
DZ Argelia
@yesiddg
yesiddg / query-string-script.liquid
Created January 9, 2020 20:20
Get the query string from the url in liquid.
{%- capture contentForQuerystring -%}{{ content_for_header }}{%- endcapture -%}
{%- assign pageUrl = contentForQuerystring | split:'"pageurl":"' | last | split:'"' | first | split:'.myshopify.com' | last |
replace:'\/','/' |
replace:'%20',' ' |
replace:'\u0026','&'
-%}
{%- assign pageQuerystring = pageUrl | split:'?' | last -%}
{%- assign parts = pageQuerystring | split:'&' -%}