First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
{% for product in collection.products %} | |
<a href="{{ product.url | within: collection }}"> | |
{% assign image = product.featured_image %} | |
<img src="{{ image.src | img_url: '480x' }}" alt="{{ image.alt | escape }}" | |
srcset=" | |
{% if image.width > 640 %}{{ image.src | img_url: '640x' }} 640w{% endif %} | |
{% if image.width > 720 %},{{ image.src | img_url: '720x' }} 720w{% endif %} | |
{% if image.width > 900 %},{{ image.src | img_url: '900x' }} 900w{% endif %} | |
" | |
sizes="(min-width: 960px) 450px, (min-width: 720px) 50vw, 100vw" |
#!/usr/bin/swift | |
// DISCLAIMER | |
// This script modifies an unencrypted file associated with the trial version of Final Cut Pro. | |
// Under the DMCA (17 U.S.C. § 1201), this modification does not qualify as circumvention of a technological | |
// protection measure (TPM), as it does not involve bypassing encryption, authentication, or similar protections. | |
// Distributing this code is therefore legal under the DMCA. | |
// This script is intended for educational and research purposes, such as exploring trial-related file structures, |
First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
// Changes Gravity Forms Ajax Spinner (next, back, submit) to a transparent image | |
// this allows you to target the css and create a pure css spinner like the one used below in the style.css file of this gist. | |
add_filter( 'gform_ajax_spinner_url', 'spinner_url', 10, 2 ); | |
function spinner_url( $image_src, $form ) { | |
return 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'; // relative to you theme images folder | |
} |
#! /bin/bash | |
# Simple Utility Script for allowing debug of hardened macOS apps. | |
# This is useful mostly for plug-in developer that would like keep developing without turning SIP off. | |
# Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg | |
# Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers. | |
# | |
# Please note: | |
# - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP. | |
# - Some hosts uses separate plug-in scanning or sandboxing. | |
# if that's the case, it's required to patch those (if needed) and attach debugger to them instead. |
This allows your gravity forms to load via ajax to ensure they work correctly with page transitions that have no window/document.onload |
The following code enables the use of Gravity Forms (2.8.7 as of now) with the following features:
The code was initially integrated into projects using roots/sage. I adapted the code for integration into "vanilla" WordPress projects but I have less feedback compared to the use I have with my stack, so feel free to let me know if there are any errors in the comments!