<?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: How to create pop-up with direct link, not form in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/429033#M22556</link>
    <description>&lt;P&gt;Hi HubSpot Community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-weight: 400;"&gt;I'm Dom and I’m a Product Manager at HubSpot. My team is currently looking to build out this functionality beyond the simple solution that we put in place in 2020. I’d be really interested in hearing more about your use cases and generally finding out how you are currently using pop ups and CTAs, what’s working for you and what’s not working. Please DM me if you’re interested in sharing your feedback and jumping on a quick 30 min call with myself and the team.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-weight: 400;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-weight: 400;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-weight: 400;"&gt;Dom&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Apr 2021 12:43:42 GMT</pubDate>
    <dc:creator>DomRychlik</dc:creator>
    <dc:date>2021-04-19T12:43:42Z</dc:date>
    <item>
      <title>How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202531#M7662</link>
      <description>&lt;P&gt;I'm looking for the abiity to have a lightbox pop up on a page that simply redirects to another page on my site. Heard about a special we have but lost the email with the direct link? Click here and there you are. Seems so much simpler than a form pop-up, but I don't want to use a store template.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Possible? Not?&lt;/P&gt;&lt;P&gt;-Michele&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2018 15:51:56 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202531#M7662</guid>
      <dc:creator>micheleguilford</dc:creator>
      <dc:date>2018-08-17T15:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202558#M7664</link>
      <description>&lt;P&gt;Hi Michele!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a special offer popup using a custom page module... I used a CTA in place of a regular link.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can place this code into the HTML + HUBL section:&lt;/P&gt;&lt;PRE&gt;&amp;lt;div class="modal" style="background: url('{{ module.pop_up_img.src }}'); background-position: center top; background-size: 100%; background-repeat: no-repeat; background-color: #fff;"&amp;gt;
    &amp;lt;div class="modal-close-outer"&amp;gt;
		&amp;lt;div class="modal-close"&amp;gt;&amp;lt;i class="fal fa-times-circle"&amp;gt;&amp;lt;/i&amp;gt;&amp;lt;/div&amp;gt;
	&amp;lt;/div&amp;gt;
  {{ widget.pop_up_text }}
&amp;lt;/div&amp;gt;
&amp;lt;div class="modal-mask"&amp;gt;&amp;lt;/div&amp;gt;


&amp;lt;script&amp;gt;
$(document).ready(function() {
    $(document).ready(function () {
        setTimeout(function(){ 
            $(".modal, .modal-mask").fadeIn(); }, {{ widget.modal_delay }});
    });
    $('.modal-close').click(function(){
        $('.modal').hide();
        $('.modal-mask').hide();
    });
});
&amp;lt;/script&amp;gt;&lt;/PRE&gt;&lt;P&gt;And this for the CSS:&lt;/P&gt;&lt;PRE&gt;.modal {
  display: none;
  position: fixed;
  top: 30px; 
  bottom: 30px; 
  right: 0;
  left: 0;
  margin: 0 auto!important;
  background-color: #fff; 
  max-width: 420px;
  max-height: 38%;
  overflow-y: hidden;
  padding: 80px 60px 80px 65px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 2px solid #eaeaea;
  z-index: 100;
 }

.modal h3 {
  margin-top: 120px;
}


.modal strong {
  font-weight: 700;
}

 .modal-mask {
  display: none;
  z-index: 99;
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgba(0,0,0,.7);
  top: 0;
  left: 0;
}

 .modal-close-outer {
  position: absolute;
  right: 45px;
  top: 20px;
}

 .modal-close {
  text-decoration: none;
  color: #fff;
  position: fixed;
  cursor: pointer;
   font-size: 30px;
}

@media (max-width: 767px) {
.modal {max-width: 76%; padding: 30px 7%!important;}
}&lt;/PRE&gt;&lt;P&gt;And I set up the fields like so:&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="This shows what kind I used." style="width: 268px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/11225i7C30906BC51DC08C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2018-08-17 at 1.10.43 PM.png" alt="This shows what kind I used." /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;This shows what kind I used.&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="This is the delay." style="width: 237px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/11226iA408C76AF07173D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2018-08-17 at 1.11.56 PM.png" alt="This is the delay." /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;This is the delay.&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here is the finished product:&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Green special offer popup. Default type. You can adjust that for whatever you use." style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/11227i27403FF8C95085BE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2018-08-17 at 1.13.56 PM.png" alt="Green special offer popup. Default type. You can adjust that for whatever you use." /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Green special offer popup. Default type. You can adjust that for whatever you use.&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You may have to adjust the css to fit your styles/etc. Also, I used Font Awesome for the close button. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2018 18:16:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202558#M7664</guid>
      <dc:creator>ipowell</dc:creator>
      <dc:date>2018-08-17T18:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202723#M7684</link>
      <description>&lt;P&gt;Thank you SO VERY MUCH. You put a lot of effort into this and I really do appreciate it. However, what I had in mind is something more simple like the lead flow pop-ups, only without the form part. Just click here to go there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gah, if you give lessons on coding to this extent, I might sign up! &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;Thank you, again,&lt;/P&gt;&lt;P&gt;Michele&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 16:02:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202723#M7684</guid>
      <dc:creator>micheleguilford</dc:creator>
      <dc:date>2018-08-20T16:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202760#M7693</link>
      <description>&lt;P&gt;Haha, thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see what you mean now... I do agree that it would be very beneficial to&amp;nbsp;have the ability&amp;nbsp;to set up a&amp;nbsp;lead flow&amp;nbsp;with a CTA button instead of a form. As of right now, you can only set up the lead flow to redirect to a page once you&amp;nbsp;fill out the a form. It's not possible to create one without a form at the moment - the email adress field is required. However, I think that would be a&amp;nbsp;fantastic addition to the lead flow feature. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 19:53:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/202760#M7693</guid>
      <dc:creator>ipowell</dc:creator>
      <dc:date>2018-08-20T19:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/245956#M10613</link>
      <description>&lt;P&gt;Would also be great (perhaps there already is a solution available) if you can use an existing form rather than creating all the details behind a form. For instance...I have an event I want to promote using a pop-up. The page with form and the confirmation email is all in place. Would be great just to direct to that instead of recreating the wheel.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 20:30:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/245956#M10613</guid>
      <dc:creator>Compuware</dc:creator>
      <dc:date>2019-01-15T20:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/246228#M10629</link>
      <description>&lt;P&gt;You could use the Advanced Slide in CTA module in the HubSpot Marketplace. It's free.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 19:26:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/246228#M10629</guid>
      <dc:creator>ipowell</dc:creator>
      <dc:date>2019-01-16T19:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/247609#M10717</link>
      <description>&lt;P&gt;This is seems like it would be a basic feature to add on. I too just went to create a pop up and noticed that it defautls ONLY to a form. I would prefer have it go to an exisiting HS LP promo. Definatly would be awesome to have some customization to the CTA.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 22:39:44 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/247609#M10717</guid>
      <dc:creator>mckay</dc:creator>
      <dc:date>2019-01-24T22:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/247707#M10731</link>
      <description>&lt;P&gt;Thanks. I downloaded the app. While it is a consideration there are limitations. Most importantly with the "native" pop-up form you can apply to multiple pages at at time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, this application is limited to only HS created landing pages. While the pop-up forms you can direct to a page on your website that isn't necessarily a HS Landing page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I can see some use cases where this will be interested to test with. Thanks for the suggestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still hope they provide improvements to the "native" pop-up forms to include the direct connection to Landing Page, forms, emails, CTAs etc.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 15:09:13 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/247707#M10731</guid>
      <dc:creator>Compuware</dc:creator>
      <dc:date>2019-01-25T15:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250135#M10826</link>
      <description>&lt;P&gt;you need to speak english to me on how to do this......lol!&lt;/P&gt;&lt;P&gt;I would like to do something like this on my site but have no idea what to do.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 15:41:52 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250135#M10826</guid>
      <dc:creator>str8sports</dc:creator>
      <dc:date>2019-02-01T15:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250150#M10828</link>
      <description>&lt;P&gt;We did a simplified redirect to the landing page which has the entire process (landing page, thank you page, confirmation email) by creating the pop-up form and then in the section where you create the "thank you page" you put a link in there that directs them to the landing page you want to promote. In our initial form that the system requires you to create you can put only 1 field (i.e. email address). We have progressive forms so when they click on the link in the thank you page from the pop-up they do not have to populate additional fields and/or nominal fields - depending on whether they were previously cookied. Not ideal but a workaround&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PU 4.PNG" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/14563iE559CB391CE52020/image-size/large?v=v2&amp;amp;px=999" role="button" title="PU 4.PNG" alt="PU 4.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PU 3.PNG" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/14560i381D6133E7DCF3AB/image-size/large?v=v2&amp;amp;px=999" role="button" title="PU 3.PNG" alt="PU 3.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PU 2.PNG" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/14562iEBFE92C1586AEC1C/image-size/large?v=v2&amp;amp;px=999" role="button" title="PU 2.PNG" alt="PU 2.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PU 1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/14561i1F8A0AD2E21552F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="PU 1.PNG" alt="PU 1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 15:57:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250150#M10828</guid>
      <dc:creator>Compuware</dc:creator>
      <dc:date>2019-02-01T15:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250155#M10829</link>
      <description>&lt;P&gt;Hubspot is real close with their existing setup and pop up forms. They just need to add some basic and simple functionality. Like adding a HS LP rather than an email. Seems to be an oversight that they would not add that into their form functions.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 16:11:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250155#M10829</guid>
      <dc:creator>mckay</dc:creator>
      <dc:date>2019-02-01T16:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250179#M10831</link>
      <description>&lt;P&gt;thanks for the info.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 16:53:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/250179#M10831</guid>
      <dc:creator>str8sports</dc:creator>
      <dc:date>2019-02-01T16:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/256450#M11257</link>
      <description>&lt;P&gt;I am also looking for this exact feature!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 16:19:22 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/256450#M11257</guid>
      <dc:creator>Hubspotlien</dc:creator>
      <dc:date>2019-03-01T16:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/262749#M11732</link>
      <description>&lt;P&gt;I'm also looking for this. Seems like it would be such a simple add-on.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2019 17:29:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/262749#M11732</guid>
      <dc:creator>kchubs</dc:creator>
      <dc:date>2019-04-02T17:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/284981#M13208</link>
      <description>&lt;P&gt;I'd love this feature to exist too, and to be honest, I think it's pretty shocking that it doesn't exist already.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While I wait for HubSpot to do this, I've been using this free tool for my clients:&amp;nbsp;&lt;A href="https://www.addthis.com/" target="_blank"&gt;https://www.addthis.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create an account and then add the Link Promotion tool:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot - 08_08_2019 , 09_41_58.png" style="width: 908px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/19021iB2CD0FD701A38778/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot - 08_08_2019 , 09_41_58.png" alt="Screenshot - 08_08_2019 , 09_41_58.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot - 08_08_2019 , 09_42_24.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/19022iD6C4F70E1F8061A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot - 08_08_2019 , 09_42_24.png" alt="Screenshot - 08_08_2019 , 09_42_24.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you just need to design the pop-up which is super-easy and quick.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once you're happy, embed the code in your HS pages and it'll start working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that helps?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 09:15:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/284981#M13208</guid>
      <dc:creator>AlexHutson</dc:creator>
      <dc:date>2019-08-08T09:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/296712#M13949</link>
      <description>&lt;P&gt;Need this! Come on HubSpot, chop chop.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 07:45:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/296712#M13949</guid>
      <dc:creator>enkelst</dc:creator>
      <dc:date>2019-10-15T07:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/302878#M14305</link>
      <description>&lt;P&gt;We also need this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 09:21:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/302878#M14305</guid>
      <dc:creator>Lmartin</dc:creator>
      <dc:date>2019-11-19T09:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/303006#M14310</link>
      <description>&lt;P&gt;They have a new beta out that allows this and it works really well!&amp;nbsp;&lt;A href="https://share.hsforms.com/1NyNhWt4fRXGJQmG7lWXaeA2hn6i?__hstc=20629287.f7451d6edc63a26b9c702d886838c3b9.1546966110871.1573837212214.1574184995767.104&amp;amp;__hssc=20629287.4.1574184995767&amp;amp;__hsfp=1697288194" target="_blank"&gt;https://share.hsforms.com/1NyNhWt4fRXGJQmG7lWXaeA2hn6i?__hstc=20629287.f7451d6edc63a26b9c702d886838c3b9.1546966110871.1573837212214.1574184995767.104&amp;amp;__hssc=20629287.4.1574184995767&amp;amp;__hsfp=1697288194&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 17:37:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/303006#M14310</guid>
      <dc:creator>alanamcconnell</dc:creator>
      <dc:date>2019-11-19T17:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/303011#M14311</link>
      <description>&lt;P&gt;Awesome. Thanks for the heads up!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 17:44:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/303011#M14311</guid>
      <dc:creator>Compuware</dc:creator>
      <dc:date>2019-11-19T17:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create pop-up with direct link, not form</title>
      <link>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/304826#M14458</link>
      <description>&lt;P&gt;Need this too! How is it possible it's not there yet??&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 14:33:17 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/How-to-create-pop-up-with-direct-link-not-form/m-p/304826#M14458</guid>
      <dc:creator>dariakg</dc:creator>
      <dc:date>2019-11-29T14:33:17Z</dc:date>
    </item>
  </channel>
</rss>

