This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
//Only need to process each form once it's ready. | |
let processed = {}; | |
//Loop over the event listener and look only for hsFormCallback and onFormReady | |
window.addEventListener('message', function(event) { | |
if(event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormReady') { | |
const forms = event.currentTarget.HubSpotForms.getForms(); | |
forms.forEach(form=>{ | |
//Checking if it's ready. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Trigger on pages and customize as needed. | |
<script> | |
window.addEventListener('message', function(event) { | |
if(event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormReady') { | |
dataLayer.push({'event':'hubspot-form-ready','hubspot-form-id':event.data.id}); | |
} | |
//Form Submission #1 | |
if(event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormSubmitted') { | |
dataLayer.push({'event':'hubspot-form-submission','hubspot-form-id':event.data.id}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_geoip.c> | |
<FilesMatch "wp-login.php|xmlrpc.php"> | |
RewriteEngine On | |
#RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !^(US)$ # If using MOD_GEOIP with Litespeed Web Server | |
#RewriteCond %{HTTP:CF-IPCOUNTRY} !^(US)$ # If using CloudFlare | |
RewriteRule ^(.*)$ - [F,L] | |
</FilesMatch> | |
</IfModule> | |
# BEGIN WordPress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Export a SQL to use to move into Production | |
wp search-replace '{{DEVELOP_URL}}' '{{PRODUCTION_URL}}' --all-tables --export=production.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Reference: https://developer.vimeo.com/player/sdk/basics | |
var iframe = document.querySelector('iframe'); //Update to whatever holds your player | |
var player = new Vimeo.Player(iframe); | |
var title = ''; | |
var sendToGTM = function(event_name) { | |
dataLayer.push({ | |
'event':'vimeo-event', | |
'action': event_name, | |
'video_title': title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in {10..1}; do custom_date=$(date -v-${i}d "+%Y-%m-%d") && curl http://loripsum.net/api/5/headers/ul/bq | wp post generate --post_content --count=1 --post_date=$custom_date; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Exit if accessed directly | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; | |
} | |
if ( class_exists( 'FLBuilder' ) ) { | |
/** | |
* Caching Solutions for _box-Builder |