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
Source: https://www.facebook.com/groups/gohighlevel/posts/2356583604801161/ | |
Here is the code that enables a sticky menu that eases in and out upon scroll. Just copy/paste in your Website > Settings Head and Body tracking code fields, then follow my quick video here to set your sticky menu up in HighLevel: | |
https://www.loom.com/share/fd0d5c87f377401d8e589c5d6a4107ce?sid=7745df88-84b4-4aef-9b05-ee86947b73e5 | |
If you need any help, shoot me an email: [email protected]. | |
T-WORX, Inc. | |
Tracy Wittenkeller |
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
// Source: https://jonathanboshoff.com/free-gpt-4-sheets-alternative/ | |
function GPT(Input) { | |
const GPT_API = "AAAAAAAAAAAAA"; // Replace with your actual API key | |
const BASE_URL = "https://api.openai.com/v1/chat/completions"; | |
const headers = { | |
"Content-Type": "application/json", | |
"Authorization": `Bearer ${GPT_API}` | |
}; | |
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
<style id="fslightbox-customizations"> | |
a.open-gallery > img { | |
width: 80%; | |
max-width: 745px; | |
border: 3px dashed white; | |
} | |
.fslightbox-container { | |
background: black; | |
} | |
</style> |
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 | |
// | |
// Do NOT USE OPENING <?php TAG IN ALFRED APP | |
// | |
/** | |
* Open 1 or more (comma or new line separated) issue number URLs from selection. | |
* | |
* @link https://github.com/cliffordp/alfred-app-workflows Download this Alfred App Workflow's code (and more). | |
* @link https://gist.github.com/cliffordp/8bfc4fee7161ceff3ac9191062a866af This Alfred App Workflow's code snippet. |
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> | |
// For a HighLevel webpage (funnel or website) that is meant to be a dedicated chatting area. | |
// Copy all of this and paste into your custom code, such as in the Footer Tracking area. | |
// This snippet: https://gist.github.com/cliffordp/1428be81a842d5b93c793d2d5b967007 | |
// Source demo: https://10xmarketing.ai/10x-chatbot-widget | |
function openChatWidget() { | |
// Check if Chat Widget exists. | |
if (window.leadConnector && window.leadConnector.chatWidget) { | |
// If it exists, open it. | |
window.leadConnector.chatWidget.openWidget(); |
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
===== | |
Snapshot created with these on 2024-04-16 | |
===== | |
1k = | |
1k follower | |
1k= | |
about page restriction | |
account will be deactivated | |
are you interested to grow your | |
automatically disabled your ads |
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 | |
// [copythis]This will be copied[/copythis] | |
// @link https://gist.github.com/cliffordp/fe86cc09d5c6250453fc4c8ccf763e5b This snippet. | |
add_shortcode( 'copythis', function( $atts, $content = null ) { | |
return sprintf( | |
'<div class="copythis">%s</div> | |
<button onclick="navigator.clipboard.writeText(this.previousElementSibling.textContent)">Copy This</button>', | |
$content); | |
}); |
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
<style> | |
/* Video: https://youtu.be/u39v1o6iqc0 */ | |
/* Code Source: https://gist.github.com/cliffordp/95dd05de071dd8f8ce0c73625ff7106d */ | |
/* Buttons */ | |
div[class*='button-'] a[class*='btn-'] { | |
background-color: {{custom_values.color_secondary}}; | |
} | |
/* H1s */ |
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 id="bizname-enforce-default-url-query-param"> | |
// Source: https://gist.github.com/cliffordp/f4aa43badd4d99cee537a82ff0e5ab3b | |
// Related: https://youtu.be/MHKzHf1BhrY | |
// Function to check for the 'bizname' query parameter and redirect if not present. | |
(function enforceDefaultBiznameQueryParam() { | |
const urlParams = new URLSearchParams(window.location.search); | |
const bizname = urlParams.get('bizname'); | |
// If 'bizname' query param is not present or is an empty string, redirect. |
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
// Adapted from https://raddle.me/f/Privacy/3722/how-to-circumvent-cloudflare-s-email-protected-thing-without with the help of chatGPT | |
function fixObfuscatedEmails() { | |
const elements = document.getElementsByClassName('__cf_email__'); | |
for (let i = 0; i < elements.length; i++) { | |
const element = elements[i]; | |
const obfuscatedEmail = element.getAttribute('data-cfemail'); | |
if (obfuscatedEmail) { | |
const decodedEmail = decrypt(obfuscatedEmail); | |
element.setAttribute('href', 'mailto:' + decodedEmail); | |
element.innerHTML = decodedEmail; |
NewerOlder