How to remove "free form with hubspot"

clothingIndia
Participant

Hello,

 

I have implemented hubspot lead capture tool to my website Synerg - The Clothing Manufacturers - is there any I have remove the "free form with hubspot". Please advise.

 

Thanks,

Karthik.

0 Upvotes
1 Accepted solution
karstenkoehler
Solution
Hall of Famer | Partner
Hall of Famer | Partner

Hi @clothingIndia,

 

The free products in HubSpot include branding, it's not possible to change that. The moment you upgrade to Marketing or CMS Hub Starter, this should disappear.

 

If you are a developer or working with developers, you could attempt to hide this bit via CSS and brute force.

 

Best regards

Karsten Köhler
HubSpot Freelancer | RevOps & CRM Consultant | Community Hall of Famer

Beratungstermin mit Karsten vereinbaren

 

Did my post help answer your query? Help the community by marking it as a solution.

View solution in original post

4 Replies 4
MrN-Developer
Member

If anyone is visiting to sort out this issue in 2025 and later, here is how quickly you can remove it:

To hide from form:

<script charset="utf-8" type="text/javascript" src="//js-eu1.hsforms.net/forms/embed/v2.js"></script>
<script>
    // Create the HubSpot form and handle the watermark iframe hiding
    hbspt.forms.create({
        portalId: "#########", 
        formId: "##########", 
        region: "##########",
        onFormReady: function($form) {
            // Find the watermark iframe inside the form
            var watermarkIframe = $form.find('div.hs-form__virality-link iframe[data-test-id="viral-link-iframe"]');

            if (watermarkIframe.length > 0) {
                // Hide the watermark iframe (without affecting the parent container)
                watermarkIframe.css('display', 'none');
            }
        }
    });
</script>

 

To remove from form:

<script charset="utf-8" type="text/javascript" src="//js-eu1.hsforms.net/forms/embed/v2.js"></script>
<script>
    // Create the HubSpot form and handle the watermark iframe removal
    hbspt.forms.create({
        portalId: "#########", 
        formId: "##########", 
        region: "##########",
        onFormReady: function($form) {
            // Find the watermark iframe inside the form
            var watermarkIframe = $form.find('div.hs-form__virality-link iframe[data-test-id="viral-link-iframe"]');

            if (watermarkIframe.length > 0) {
                // Completely remove only the watermark iframe (without affecting the parent container)
                watermarkIframe.remove();
            }
        }
    });
</script>

 

Thank me later. 🙏

0 Upvotes
adden
Member

Hi! 

 

There are a couple of ways to remove it. As mentioned in other replies, you can hide via CSS but you might need a developer and Hubspot can change that at any time. Of course, you can also upgrade, which would be the ideal route if you're running the full Hubspot stack.

 

However, I found another way of doing it, which is to use a different form that integrates with Hubspot. Most form builder plugins charge extra for that functionality, but some don't. If you use Wordpress, you can try Forminator. More info here.

You can probably find something like this for other platforms as well, if your website is not on Hubspot directly. That is the downside I believe.

0 Upvotes
karstenkoehler
Solution
Hall of Famer | Partner
Hall of Famer | Partner

Hi @clothingIndia,

 

The free products in HubSpot include branding, it's not possible to change that. The moment you upgrade to Marketing or CMS Hub Starter, this should disappear.

 

If you are a developer or working with developers, you could attempt to hide this bit via CSS and brute force.

 

Best regards

Karsten Köhler
HubSpot Freelancer | RevOps & CRM Consultant | Community Hall of Famer

Beratungstermin mit Karsten vereinbaren

 

Did my post help answer your query? Help the community by marking it as a solution.

clothingIndia
Participant

Thank you for your reply. Much appreciated

0 Upvotes