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
const hubspot = require('@hubspot/api-client') | |
const hubspotClient = new hubspot.Client({ | |
"accessToken": process.env.PRIVATE_APP_TOKEN | |
}) | |
const labels = { | |
"singular": "Property", | |
"plural": "Properites" | |
}; |
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
var _hsp = window._hsp = window._hsp || [] | |
window.dataLayer = window.dataLayer || [] | |
_hsp.push(['addPrivacyConsentListener', function(consent) { | |
// console.log('-------- [HubSpot website logging start] --------') | |
// console.log('analytics: ' + consent.categories.analytics) | |
// console.log('advertisement: ' + consent.categories.advertisement) | |
// console.log('functionality: ' + consent.categories.functionality) | |
// console.log('-------- [HubSpot website logging start] --------') | |
if(consent.categories.analytics) { |
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
<div class="form-module__form ll"></div> | |
<script id="form-module__script" charset="utf-8" type="text/javascript" data-src="//js.hsforms.net/forms/v2.js" data-targetclass="form-module__form" data-portal="{{ portalId }}" data-form="{{ module.module_content.form_field.form_id }}" defer></script> | |
<script> | |
function getFormData(formScript) { | |
return { | |
id: formScript.dataset.form, | |
portal: formScript.dataset.portal, | |
targetClass: "." + formScript.dataset.targetclass |
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
window.addEventListener('message', function (event) { | |
if (event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormReady') { | |
// hubspot form is Loaded | |
} | |
}) |
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
.blog .blog-content table tr td { | |
padding: 8px!important; | |
} | |
.blog .blog-content table, | |
.blog .blog-content table tr, | |
.blog .blog-content table tr td { | |
height: auto!important; | |
text-align: left!important; | |
vertical-align: top!important; |
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
const axiosDefault = require("axios"); | |
const CSVtoJSON = (strData, strDelimiter) => { | |
strDelimiter = strDelimiter || ","; | |
if (strData.substr(-1) !== "\n") strData += "\n"; | |
let objPattern = new RegExp( | |
"(\\" + strDelimiter + "|\\r?\\n|\\r|^)" + '(?:"([^"]*(?:""[^"]*)*)"|' + '([^"\\' + strDelimiter + "\\r\\n]*))", | |
"gi" | |
); |
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
<form> | |
<~-- form html here --> | |
</form> | |
<script> | |
function onSubmit() { |
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
{% set objects = crm_objects("condo_project") %} | |
<label for="condo-projects">Choose a project:</label> | |
<select name="condo-projects" id="condo-project"> | |
{% for item in objects.results %} | |
<option value="{{ item.id }}">{{ item.name }}</option> | |
{% endfor %} | |
</select> |
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 | |
// to be added at top of implementation page | |
require './vendor/autoload.php'; | |
use FacebookAds\Api; | |
use FacebookAds\Logger\CurlLogger; | |
use FacebookAds\Object\ServerSide\ActionSource; | |
use FacebookAds\Object\ServerSide\Content; | |
use FacebookAds\Object\ServerSide\CustomData; | |
use FacebookAds\Object\ServerSide\DeliveryCategory; | |
use FacebookAds\Object\ServerSide\Event; |
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
.multi-column { | |
.multi-column__col { | |
flex-basis: 33%; | |
margin: 0; | |
padding-left: 20px; | |
padding-right: 20px; | |
&:nth-child(3n+1) { | |
padding-left: 0; | |
} | |
&:nth-child(3n+3) { |