Skip to content

Instantly share code, notes, and snippets.

View NickDeckerDevs's full-sized avatar

nicholas decker NickDeckerDevs

View GitHub Profile
@NickDeckerDevs
NickDeckerDevs / temp.js
Created February 26, 2022 16:06
some comment/psuedo code for companies api to hubdb with google geocode location update
const hubspot = require('@hubspot/api-client');
exports.main = (event, callback) => {
const hubspotClient = new hubspot.Client({
apiKey: process.env.HAPIKEY
});
hubspotClient.crm.companies.basicApi.getById(event.object.objectId, ['name', 'address', 'zip', 'etc'])
.then(results => {
const data = fitlerType == 'ContentTypes' ? '[data-type="' + clickedItem + '"]' : '[data-topic="' + clickedItem + '"]'
const data = fitlerType == 'ContentTypes' ? `[data-type="${clickedItem}"]` : `[data-topic="${clickedItem}"]`
let data = `[data-topic="${clickedItem}"]`
if(filterType == 'ContentTypes') {
data = `[data-type="${clickedItem}"]`
}
@NickDeckerDevs
NickDeckerDevs / gist:9f7b212c0d6b54139af0e967823f6648
Created December 8, 2020 23:01
husbpot cta embed shortcode for wordpress
function embed_hubspot_cta( $atts ) {
// to use this embed code follow this:
// [embed_cta portal=”{{ portalID tierpoitn is: 135870 }}″ cta=”{{ ctaId }}”]
// [embed_cta portal="135870" cta="8b879891-fb4c-4961-9cbf-87adb9e827a7" centered="true"]
$a = shortcode_atts( array(
'portal' => '135870',
'cta' => '',
'centered' => 'false',
), $atts );
@NickDeckerDevs
NickDeckerDevs / replaceCtas.js
Created December 3, 2020 21:58
regex for replacing cta in hubspot hubl stuff to a wordpress shortcode example
// example goes over three diffferent items. The regex matches for a cta in a p tag as well as a normal cta. it ignores justify center alignment stuff
let body = `<p>{{cta('784c4ec9-c3b6-4080-9d59-2bc6dafc4122','justifycenter')}}</p>",https://f.hubspotusercontent20.net/hubfs/135870/BIT2020-1120x630-NutanixFiresideChat_multicloud.jpg,Matt Pacheco,"Cloud Computing,BraveIT,remote workforce"
BraveIT Session: How Can Businesses Thrive in a Multicloud World?,{{cta('784c4ec9-c3b6-1111-1111-2bc6dafc4122','justifycenter')}}braveit-session-how-can-businesses-thrive{{cta('784c4ec9-c3b6-3333-333-2bc6dafc4122')}}-in-a-multicloud-world,"TierPoint and Dell Technologies discuss multicloud challenges, the public cloud, managing apps & workloads in the cloud, and more.",04/20/52859 08:06:27,"<p>Over the past couple of years, conversations that were once about “the cloud” have shifted to conversations about multicloud. As IT departments moved their enterprise applications to the cloud, they discovered that different applicat
{ "id": "1", "name": "Pre Maturity", "intake": "lei", "intakeId": "1", "category": "preintake" },
{ "id": "2", "name": "Maturity Notification", "intake": "lei", "intakeId": "1", "category": "preintake" },
{ "id": "3", "name": "Lease End Inspection", "intake": "lei", "intakeId": "1", "category": "preintake" },
{ "id": "4", "name": "Service Quote", "intake": "lei", "intakeId": "1", "category": "preintake" },
{ "id": "5", "name": "Send Service Quote To Customer", "intake": "lei", "intakeId": "1", "category": "preintake" },
{ "id": "6", "name": "Waiting For Service Quote Approval", "intake": "lei", "intakeId": "1", "category": "approval" },
{ "id": "7", "name": "Waiting For Service Quote Approval [APPROVED]", "intake": "lei", "intakeId": "1", "category": "approval" },
{ "id": "8", "name": "Waiting For Service Quote Approval [DENIED]", "intake": "lei", "intakeId": "1", "category": "denied" },
{ "id": "9", "name": "Send Acquisition", "intake": "lei", "intakeId": "1", "category": "approval" },
{ "id": "10", "name":
@NickDeckerDevs
NickDeckerDevs / blog-topics.hubl
Created November 18, 2020 21:18
turn topics into a string and check if it contains a topic -- this really makes blog tag looping go away!
{% for content in contents %}
<div class="post-item">
{% if content.topic_list %}
{% set post_topics = content.topic_list|join %}
{% set target_topic = "Featured" %}
{% if post_topics is string_containing target_topic %}
<h5>post HAS {{ target_topic }} TAG</h5>
{% else %}
<h5>NO {{ target_topic }} TAG</h5>
{% endif %}
>>> https://www.tierpoint.com/knowledge-center/webinars/cloud-to-cloud-recovery-disaster-recovery-as-a-service-draas-powered-by-dell-emc-recoverp
> --------------------------------------------
> 301 Moved Permanently
> --------------------------------------------
Status: 301 Moved Permanently
Code: 301
Date: Thu, 15 Oct 2020 14:56:44 GMT
Server: Apache
@NickDeckerDevs
NickDeckerDevs / native-lazy-load.js
Created September 10, 2020 13:40
hubspot lazy load script
<script>
// deckerdevslazyload natitve then script based if not proper browser
(function() {
// check to see if native lazy loading is available
if ("loading" in HTMLImageElement.prototype) {
console.log('lazy loading is native')
var lazyEls = $('[data-src]');
lazyEls.each(function(){
var src = $(this).data('src');
var srcset = $(this).data('srcset');
@NickDeckerDevs
NickDeckerDevs / hs-form-listener.js
Created September 2, 2020 13:33
hubspot form listener event message callback form submitted
window.addEventListener('message', event => {
if (event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormSubmitted') {
}
});
@NickDeckerDevs
NickDeckerDevs / headermarkup.html
Created August 20, 2020 13:18
header markup - json ld hubspot blog
{# raw_html "custom_head" label="Enter custom head HTML here", export_to_template_context=True #}
{# widget_data.custom_head.value #}
{% set company_name = '######' %}
{% set logo_url = '#####' %}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Blog",