<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: hubspot form as a popup upon a CTA click in Lead Capture Tools</title>
    <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/807779#M9429</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I can't find the embed code for popup form, could you help show where can I find it? Also needed to fill out the trigger for the pop-up, what should I choose for trigger option? Is there also a more clear example on which part of embedded code should be insert into the above code. Thank you so much!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jun 2023 11:11:42 GMT</pubDate>
    <dc:creator>oy</dc:creator>
    <dc:date>2023-06-15T11:11:42Z</dc:date>
    <item>
      <title>hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/764210#M8936</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, I need to load a hubspot form as a popup upon a CTA click. Can soemone let me knwo how to do that? Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2023 18:41:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/764210#M8936</guid>
      <dc:creator>APatil0</dc:creator>
      <dc:date>2023-03-04T18:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/764411#M8939</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/531181"&gt;@APatil0&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Here are the steps to load a HubSpot form as a popup upon a CTA click:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Log in to your HubSpot account and navigate to the Marketing &amp;gt; Lead Capture &amp;gt; Forms.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Click on the form you want to use and then click on the Embed button in the top-right corner.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Select the Popup Form option from the drop-down menu.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Customize your popup form by selecting the fields you want to include, choosing a form style, and configuring the form settings.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Once you've customized your popup form, click on the Publish tab and then copy the embed code.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Open the HTML code for the page where you want the popup form to appear.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add a CTA button or link on the page where you want the popup to appear.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add an event listener to the CTA button or link so that it triggers the popup form when clicked.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Use the JavaScript code below to load the HubSpot form as a popup when the CTA button or link is clicked:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;script&amp;gt;
document.addEventListener("DOMContentLoaded", function(event) { 
  var cta = document.getElementById("cta-button"); // Replace "cta-button" with the ID of your CTA button or link
  var formEmbed = document.createElement("div");
  formEmbed.innerHTML = "&amp;lt;!-- Paste your HubSpot form embed code here --&amp;gt;"; // Replace this comment with the embed code you copied from HubSpot
  formEmbed.style.display = "none";
  document.body.appendChild(formEmbed);
  cta.addEventListener("click", function(event) {
    event.preventDefault();
    formEmbed.style.display = "block";
    });
});
&amp;lt;/script&amp;gt;
&lt;/LI-CODE&gt;
&lt;P&gt;Make sure to replace "cta-button" with the ID of your CTA button or link, and replace the comment inside the formEmbed.innerHTML with the embed code you copied from HubSpot.&lt;BR /&gt;&lt;BR /&gt;That's it! Now when someone clicks on your CTA button or link, the HubSpot form should appear as a popup on the page.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&amp;nbsp;&lt;BR /&gt;Himanshu Rauthan&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 06 Mar 2023 06:40:39 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/764411#M8939</guid>
      <dc:creator>himanshurauthan</dc:creator>
      <dc:date>2023-03-06T06:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/807779#M9429</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I can't find the embed code for popup form, could you help show where can I find it? Also needed to fill out the trigger for the pop-up, what should I choose for trigger option? Is there also a more clear example on which part of embedded code should be insert into the above code. Thank you so much!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 11:11:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/807779#M9429</guid>
      <dc:creator>oy</dc:creator>
      <dc:date>2023-06-15T11:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/810660#M9491</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Could you please share a more detailed instruction. Can't find some part mentioned above&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 09:27:24 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/810660#M9491</guid>
      <dc:creator>AMURAVITSKAYA</dc:creator>
      <dc:date>2023-06-22T09:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/810926#M9500</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/587835"&gt;@AMURAVITSKAYA&lt;/a&gt;, I hope you are doing well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide more details about the part you can't find?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This way&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/20405"&gt;@himanshurauthan&lt;/a&gt;&amp;nbsp;will be able to help you better &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Diana&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 18:41:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/810926#M9500</guid>
      <dc:creator>DianaGomez</dc:creator>
      <dc:date>2023-06-22T18:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/812302#M9517</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/177184"&gt;@DianaGomez&lt;/a&gt;&amp;nbsp; &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/20405"&gt;@himanshurauthan&lt;/a&gt;&amp;nbsp;, would you know where to find&amp;nbsp;&lt;SPAN&gt;embed code for popup form.&lt;BR /&gt;&lt;BR /&gt;Also needed to fill out the trigger for the pop-up, what should I choose for trigger option?&lt;BR /&gt;&lt;BR /&gt;Is there also a more clear example on which part of embedded code should be insert into the above code. Thank you so much!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 06:23:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/812302#M9517</guid>
      <dc:creator>oy</dc:creator>
      <dc:date>2023-06-27T06:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/812370#M9518</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/575813"&gt;@oy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;To find the embed code for a popup form&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Log in to your HubSpot account.&lt;BR /&gt;Go to Marketing &amp;gt; Lead Capture &amp;gt; Forms.&lt;BR /&gt;Click on the form you want to use.&lt;BR /&gt;Click on the Embed button in the top-right corner.&lt;BR /&gt;Select the Popup Form option from the drop-down menu.&lt;BR /&gt;Copy the embed code.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The trigger option for the popup form is the event that will trigger the popup to appear.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Page load - The popup will appear when the page loads.&lt;BR /&gt;CTA click - The popup will appear when a CTA button or link is clicked.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;insert the embed code into the JavaScript code, you need to replace the comment inside the formEmbed.innerHTML with the embed code you copied from HubSpot.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 08:56:36 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/812370#M9518</guid>
      <dc:creator>himanshurauthan</dc:creator>
      <dc:date>2023-06-27T08:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/813632#M9543</link>
      <description>&lt;P&gt;Hi Diana,&lt;BR /&gt;&lt;BR /&gt;I couldn't find proper things since point 3 of the answer:&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Select the Popup Form option from the drop-down menu.&lt;/P&gt;&lt;P&gt;- Customize your popup form by selecting the fields you want to include, choosing a form style, and configuring the form settings.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;However, I've kinda solved the issue my way - I've added anchor to the form title and now every buttor on the page sens me to the anchored part. for buttons on other pages that still need to send to the form, I'm using the whole link with the anchor&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 12:55:44 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/813632#M9543</guid>
      <dc:creator>AMURAVITSKAYA</dc:creator>
      <dc:date>2023-06-29T12:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/823260#M9736</link>
      <description>&lt;P&gt;&lt;A class="" href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/20405" target="_self"&gt;&lt;SPAN class=""&gt;himanshurauthan&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;The options for embed must've changed, because you no longer have "Popup Form" as an option (see screenshot below). Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-07-21 at 11.21.35 AM.png" style="width: 596px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/95198iFB90A26E359BE349/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-07-21 at 11.21.35 AM.png" alt="Screenshot 2023-07-21 at 11.21.35 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 15:22:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/823260#M9736</guid>
      <dc:creator>junger23</dc:creator>
      <dc:date>2023-07-21T15:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/824992#M9762</link>
      <description>&lt;P class="lia-align-justify"&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/575813"&gt;@oy&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/587835"&gt;@AMURAVITSKAYA&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/602749"&gt;@junger23&lt;/a&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;I understand you wish to have a trigger pop up once a button is clicked that includes a HubSpot form.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of my colleagues recorded this video with an option:&lt;STRONG&gt;&amp;nbsp;&lt;A href="https://www.loom.com/share/d379a6a437e94b30a5649a6bd9ba8d95?sid=b1a4dea1-26fb-4fc8-b1dc-2799a245919e" target="_blank" rel="noopener"&gt;https://www.loom.com/share/d379a6a437e94b30a5649a6bd9ba8d95?sid=b1a4dea1-26fb-4fc8-b1dc-2799a245919e&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the article he mentioned in the video:&amp;nbsp;&lt;STRONG&gt;&lt;A href="http://Create%20calls-to-action (CTAs)" target="_blank" rel="noopener"&gt;&lt;SPAN class="hs_cos_wrapper hs_cos_wrapper_meta_field hs_cos_wrapper_type_text" data-hs-cos-general-type="meta_field" data-hs-cos-type="text"&gt;Create calls-to-action (CTAs)&lt;/SPAN&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Hope this helps,&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Diana&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 20:43:50 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/824992#M9762</guid>
      <dc:creator>DianaGomez</dc:creator>
      <dc:date>2023-07-25T20:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/843543#M10009</link>
      <description>&lt;P data-unlink="true"&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/177184"&gt;@DianaGomez&lt;/a&gt;&amp;nbsp;, thank you so much! This works perfectly. If after a visitor submits the form, I'd like to redirect them somewhere else and add a parameter that I got from the form they just submitted, is there a way to do this?&lt;BR /&gt;&lt;BR /&gt;For example, after form submission, user will be redirected to www.domain.com And if they inputed that their user_id = 999, i'd like to add ?id=999 to the redirect link at the end, so the actual redirect link would be www.domain.com?id=999&amp;nbsp;&lt;/P&gt;&lt;P data-unlink="true"&gt;Hopefully this is possible. Thanks again&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 09:34:33 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/843543#M10009</guid>
      <dc:creator>oy</dc:creator>
      <dc:date>2023-09-01T09:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/843869#M10019</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/575813"&gt;@oy&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;In this case, I recommend reviewing the next thread:&amp;nbsp;&lt;A href="https://community.hubspot.com/t5/Lead-Capture-Tools/can-you-create-pop-up-forms-that-redirect-to-a-landing-page/m-p/251009" target="_blank" rel="noopener"&gt;Can you create pop-up forms that redirect to a landing page?&lt;/A&gt;. You may need to use code and likely involve a developer to accomplish your idea.&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Best,&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Diana&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 20:24:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/843869#M10019</guid>
      <dc:creator>DianaGomez</dc:creator>
      <dc:date>2023-09-01T20:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/853980#M10140</link>
      <description>&lt;P&gt;This documentation needs updated.&amp;nbsp; You can no longer create a "popup" form - there is no option for them anymore.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 16:15:35 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/853980#M10140</guid>
      <dc:creator>EMyers</dc:creator>
      <dc:date>2023-09-22T16:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/882438#M10489</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/177184"&gt;@DianaGomez&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I got this working (appears to only work with Legacy CTA (which is odd as the new cta seems to have a native way of linking to a cta popup but only in custom HTML and even then it doesn tactually work)&lt;BR /&gt;&lt;BR /&gt;regardless in legacy it does work however in mobile after disabling (turn off on small screen sizes) theres still an issue where it only works on the second tap&lt;BR /&gt;&lt;BR /&gt;i think it may be related to this&amp;nbsp;&lt;A href="https://css-tricks.com/annoying-mobile-double-tap-link-issue/" target="_blank"&gt;https://css-tricks.com/annoying-mobile-double-tap-link-issue/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;any ideas?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my legacy CTA has nothing for css besided the code snippet saved in advanced "custom css class"&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 02:56:56 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/882438#M10489</guid>
      <dc:creator>YReich</dc:creator>
      <dc:date>2023-11-21T02:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: hubspot form as a popup upon a CTA click</title>
      <link>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/882693#M10501</link>
      <description>&lt;P class="lia-align-justify"&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/453045"&gt;@YReich&lt;/a&gt;,&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Thank you for providing the details. In that case, I recommend posting in our &lt;A href="https://community.hubspot.com/t5/HubSpot-Developers/ct-p/developers" target="_blank" rel="noopener"&gt;developer forum&lt;/A&gt;. There, you can get more assistance regarding this topic, and even share the code you are currently using to see if someone has an idea on how to modify it to achieve your goal. We have a helpful and knowledgeable community there who can provide valuable insights and solutions.&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Best regards,&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-align-justify"&gt;Diana&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 14:28:45 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Lead-Capture-Tools/hubspot-form-as-a-popup-upon-a-CTA-click/m-p/882693#M10501</guid>
      <dc:creator>DianaGomez</dc:creator>
      <dc:date>2023-11-21T14:28:45Z</dc:date>
    </item>
  </channel>
</rss>

