Skip to content

Instantly share code, notes, and snippets.

View ladislavsulc's full-sized avatar

Ladislav Šulc ladislavsulc

View GitHub Profile
@ladislavsulc
ladislavsulc / shopify-cart-edit.css
Created October 30, 2024 14:40
Shopify cart edits - hide "add to cart" and make QTY for gifts visible in sidecart
.minus-qty.hide {
display: block !important;
}
.footer-cart-drawer .view-cart-btn {
display: none !important;
}
@ladislavsulc
ladislavsulc / assortion.js
Created October 26, 2024 12:15
Assortion Shopify app - custom add to cart (add-ons) settings
function handleAddToCartClick() {
const button = document.querySelector('[name="add"]');
if (button) {
button.addEventListener('click', function () {
setTimeout(function () {
window.Assortion.updateCart();
}, 1000);
})
}
}
@ladislavsulc
ladislavsulc / download-m3u8.md
Last active February 23, 2025 21:30 — forked from marlosirapuan/gist:778d6beda5f8ab95695748011c864b19
Download .m3u8 files on MacOS

Install ffmpeg

brew install ffmpeg

Download file through url, like this:

ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "http://url-file.domain.m3u8" -c copy video.mp4
@ladislavsulc
ladislavsulc / custom.css
Created August 19, 2024 14:55
luciesvoboda.com hide prices
/* Paintings settings, code injection */
<style>
.product-quantity-input, .sqs-add-to-cart-button-wrapper {
display: none!important;
}
.product-price {
display: none;
}
</style>
@ladislavsulc
ladislavsulc / stylebot.css
Last active April 27, 2023 12:41
Eurofotbal Dark Mode (download Stylebot extension and import the code)
div.e-layout__wrap.e-leagues-layout {
background-color: #434343;
}
div div p {
color: #f3f3f3;
}
div.e-comments-comment.e-comments-comment--highlighted {
background-color: #111;
@ladislavsulc
ladislavsulc / rewards-logged-in.css
Last active August 25, 2022 16:02
stamped.io rewards page (logged in)
.stamped-rewards-widget-text.stamped-customer-logged-in {
margin-top: 24px;
padding: 8px 16px;
border: 1px solid #d2d8e5;
border-radius: 3px;
}
span[data-target-id="label-balance"] {
color: #012169;
}
// https://stackoverflow.com/questions/64573177/unable-to-resolve-dependency-tree-error-when-installing-npm-packages
npm install --legacy-peer-deps
@ladislavsulc
ladislavsulc / license.ps
Created November 16, 2021 19:44
Show WIN serial / license code in terminal
wmic path SoftwareLicensingService get OA3xOriginalProductKey
@ladislavsulc
ladislavsulc / fluid-images.css
Last active February 18, 2021 17:28
Fluid Images
// https://www.zachleat.com/web/fluid-images/
img {
max-width: 100%;
}
img[width] {
width: auto; /* Defer to max-width */
}
img[width][height] {
height: auto; /* Preserve aspect ratio */
@ladislavsulc
ladislavsulc / add-wpcli.sh
Created October 27, 2020 17:29
Add WP CLI to Laragon
cd C:\laragon\usr\bin && curl -L -O https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && echo @ECHO OFF > wp.bat && echo php "%~dp0wp-cli.phar" %* >> wp.bat