Skip to content

Instantly share code, notes, and snippets.

@odessy
odessy / gist:f123c6784cec7d587844fd9eb20e6f60
Created April 26, 2023 17:13
Pipeline Disable collection toggle grid options for smaller screens
/* Disable collection toggle grid options for smaller screens */
@media only screen and (max-width: 1180px) {
[data-toggle-grid="3"],
[data-toggle-grid="4"],
[data-toggle-grid="5"],
[data-toggle-grid="6"] {
display: none!important;
}
[data-toggle-grid="1"],
[data-toggle-grid="2"] {
@odessy
odessy / gist:0ab460290e7c65376336591eb222372b
Last active September 6, 2024 15:28
Pipeline 6 cart js fetch custom event
window.fetch('/cart.js')
.then(function(response) {
if(response.ok){
return response.json().then(function(json) {
document.dispatchEvent(new CustomEvent('theme:cart:change', {
detail: {
cart: json,
},
bubbles: true,
}));