• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

HubSpot integration

Craig

Chevereto Member
Has anyone successfully integrated the tracking code for Hubspot marketing platform. I placed it in the Custom JS code box in the theme page but Hubspot has not recognized it yet.

Thanks
 
Which is the code?

This is the code given to me by HubSpot. I uncommented and removed the script tags.

<!-- Start of HubSpot Embed -->
<script type="text/javascript" src="//js.hs-scripts.com/2727782.js" id="LeadinEmbed-2727782" crossorigin="use-credentials" async defer></script>
<!-- End of HubSpot Embed -->
 
Custom JS code if for code that goes inside the <script> tag. To add this HubSpot code add a custom theme hook.

app/themes/Peafowl/custom_hooks/head.php

Code:
<?php if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?>
<!-- Start of HubSpot Embed -->
<script type="text/javascript" src="//js.hs-scripts.com/2727782.js" id="LeadinEmbed-2727782" crossorigin="use-credentials" async defer></script>
<!-- End of HubSpot Embed -->
 
Last edited:
Hubspot embed was successful!

Thanks Rodolfo!
Custom JS code if for code that goes inside the <script> tag. To add this HubSpot code add a custom theme hook.

app/themes/Peafowl/custom_hooks/head.php

Code:
<?php if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?>
<!-- Start of HubSpot Embed -->
<script type="text/javascript" src="//js.hs-scripts.com/2727782.js" id="LeadinEmbed-2727782" crossorigin="use-credentials" async defer></script>
<!-- End of HubSpot Embed -->


Hubspot embed was successful!

Thanks Rodolfo!
 
Back
Top