API per membership

https://developers.hubspot.com/apisbytier

Timeout Import All Import

If its timing out contact wpengine support and ask them Disable and add script WPE Governor After the import contact them again and : ‘Reanable the Apache Killscript’ and ‘Remove the define in the wp-config file that toggles off the WPE Governor’

Divi Mega Menu

https://www.elegantthemes.com/documentation/divi/mega-menus/   Divi Mega Menu Collapsable :   (function($) {   function setup_collapsible_submenus() {     var $menu = $(‘#mobile_menu’),         top_level_link = ‘#mobile_menu .menu-item-has-children > a’;              $menu.find(‘a’).each(function() {                  if ( ! $(this).siblings(‘.sub-menu’).length ) {             $(this).on(‘click’, function(event) {                 $(this).parents(‘.mobile_nav’).trigger(‘click’);             });         } else {             $(this).siblings(‘.mobile-toggle-icon’).on(‘click’, function(event) {                 event.preventDefault(); …

HubSpot API Clients

HubSpot API Clients HubDb Client Add the client to your page: `<script src=”/hs/hsstatic/ClientSupport/static-1.9/js/HubDbClient.js”/>` Functions: `window.hubdbClient.getTable(portalId, tableId, callback)` `window.hubdbClient.getRow(portalId, tableId, rowId, callback)` `window.hubdbClient.listRows(portalId, tableId, queryString, callback)` `callback` is a function that is called with the result object. Example: ` function test(result) {         console.log(result); } window.hubdbClient.getTable(123, 456, test); ` Search Client Add the client to your page: …

Using Hubl to assets url

https://designers.hubspot.com/docs/modules/module-options?&_ga=2.118297289.1770940588.1556032987-627565771.1548279377#linked-files     .arrow{     background: url({{ module_asset_url(‘arrow.png’) }}); }   From <https://designers.hubspot.com/docs/modules/module-options?&_ga=2.118297289.1770940588.1556032987-627565771.1548279377#linked-files>