<?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 custom module form field title issue in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484679#M24703</link>
    <description>&lt;P&gt;@Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/3688"&gt;@Jsum&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use the &lt;A href="https://developers.hubspot.com/docs/cms/hubl/tags#form" target="_blank" rel="noopener"&gt;form field&lt;/A&gt; itself you can add a title like as mentioned inside the documentation for &lt;A href="https://developers.hubspot.com/docs/cms/hubl/tags#form" target="_blank" rel="noopener"&gt;Hubl tags&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've run a test myself and this worked for me:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% form
  title="Sample title"
  no_title="false"
  form_to_use="{{ module.form.form_id }}"
  response_response_type="{{ module.form.response_type }}"
  response_message="{{ module.form.message }}"
  response_redirect_id="{{ module.form.redirect_id }}"
  response_redirect_url="{{module.form.redirect_url}}"
  gotowebinar_webinar_key="{{ module.form.gotowebinar_webinar_key }}"
%}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the documentation it is telling you can remove the title by setting up no_title. So you would get this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% form
  no_title="true"
  form_to_use="{{ module.form.form_id }}"
  response_response_type="{{ module.form.response_type }}"
  response_message="{{ module.form.message }}"
  response_redirect_id="{{ module.form.redirect_id }}"
  response_redirect_url="{{module.form.redirect_url}}"
  gotowebinar_webinar_key="{{ module.form.gotowebinar_webinar_key }}"
%}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Aug 2021 06:43:41 GMT</pubDate>
    <dc:creator>Indra</dc:creator>
    <dc:date>2021-08-25T06:43:41Z</dc:date>
    <item>
      <title>Hubspot custom module form field title issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484314#M24687</link>
      <description>&lt;P&gt;I am using a form field in a custom module. There isn't a 'title' field for the form field, but I tacked a title onto the field widget in my code:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;{% form
    form_to_use="{{ module.form_field.form_id }}"
    response_response_type="{{ module.form_field.response_type }}"
    response_message="{{ module.form_field.message }}"
    response_redirect_id="{{ module.form_field.redirect_id }}"
    response_redirect_url="{{module.form_field.redirect_url}}"
    gotowebinar_webinar_key="{{ module.form_field.gotowebinar_webinar_key }}"
    title="test title"
%}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The markup that this widget outputs is going to include an &amp;lt;h3&amp;gt; in the code, empty or not, and this &amp;lt;h3&amp;gt; is going to have spacing that will need to be dealt with. I figured that there would be a title field available in the form editor or in the page editor, when choosing the form, but there isn't. I'm going to add an extra text field to my module and apply the value to the title attribute for the form field, and that will solve my issue, but it looks like this &amp;lt;h3&amp;gt; is a remnant from an older version of the cms. If I use a form tag or dnd module then it would have a title field, but the custom module form field does not provide this functionality. Is this correct?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 17:53:06 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484314#M24687</guid>
      <dc:creator>Jsum</dc:creator>
      <dc:date>2021-08-24T17:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom module form field title issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484573#M24699</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/3688"&gt;@Jsum&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pretty sure I've run in this before as well!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 00:30:56 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484573#M24699</guid>
      <dc:creator>Kevin-C</dc:creator>
      <dc:date>2021-08-25T00:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom module form field title issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484679#M24703</link>
      <description>&lt;P&gt;@Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/3688"&gt;@Jsum&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use the &lt;A href="https://developers.hubspot.com/docs/cms/hubl/tags#form" target="_blank" rel="noopener"&gt;form field&lt;/A&gt; itself you can add a title like as mentioned inside the documentation for &lt;A href="https://developers.hubspot.com/docs/cms/hubl/tags#form" target="_blank" rel="noopener"&gt;Hubl tags&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've run a test myself and this worked for me:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% form
  title="Sample title"
  no_title="false"
  form_to_use="{{ module.form.form_id }}"
  response_response_type="{{ module.form.response_type }}"
  response_message="{{ module.form.message }}"
  response_redirect_id="{{ module.form.redirect_id }}"
  response_redirect_url="{{module.form.redirect_url}}"
  gotowebinar_webinar_key="{{ module.form.gotowebinar_webinar_key }}"
%}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the documentation it is telling you can remove the title by setting up no_title. So you would get this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% form
  no_title="true"
  form_to_use="{{ module.form.form_id }}"
  response_response_type="{{ module.form.response_type }}"
  response_message="{{ module.form.message }}"
  response_redirect_id="{{ module.form.redirect_id }}"
  response_redirect_url="{{module.form.redirect_url}}"
  gotowebinar_webinar_key="{{ module.form.gotowebinar_webinar_key }}"
%}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 06:43:41 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484679#M24703</guid>
      <dc:creator>Indra</dc:creator>
      <dc:date>2021-08-25T06:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom module form field title issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484917#M24718</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/3688"&gt;@Jsum&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-sheets-value="{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:&amp;quot;You can use custome module like :  https://www.loom.com/share/62e609600b0c442baa53ed71a727fa48\r\n\r\n\r\n{% form\r\n    form_to_use=\&amp;quot;{{ module.select_form.form_id }}\&amp;quot;\r\n    response_response_type=\&amp;quot;{{ module.select_form.response_type }}\&amp;quot;\r\n    response_message=\&amp;quot;{{ module.select_form.message }}\&amp;quot;\r\n    response_redirect_id=\&amp;quot;{{ module.select_form.redirect_id }}\&amp;quot;\r\n    response_redirect_url=\&amp;quot;{{module.select_form.redirect_url}}\&amp;quot;\r\n    gotowebinar_webinar_key=\&amp;quot;{{ module.select_form.gotowebinar_webinar_key }}\&amp;quot;\r\n%}\r&amp;quot;}" data-sheets-userformat="{&amp;quot;2&amp;quot;:829,&amp;quot;3&amp;quot;:{&amp;quot;1&amp;quot;:0},&amp;quot;5&amp;quot;:{&amp;quot;1&amp;quot;:[{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0,&amp;quot;5&amp;quot;:{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0}},{&amp;quot;1&amp;quot;:0,&amp;quot;2&amp;quot;:0,&amp;quot;3&amp;quot;:3},{&amp;quot;1&amp;quot;:1,&amp;quot;2&amp;quot;:0,&amp;quot;4&amp;quot;:1}]},&amp;quot;6&amp;quot;:{&amp;quot;1&amp;quot;:[{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0,&amp;quot;5&amp;quot;:{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0}},{&amp;quot;1&amp;quot;:0,&amp;quot;2&amp;quot;:0,&amp;quot;3&amp;quot;:3},{&amp;quot;1&amp;quot;:1,&amp;quot;2&amp;quot;:0,&amp;quot;4&amp;quot;:1}]},&amp;quot;7&amp;quot;:{&amp;quot;1&amp;quot;:[{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0,&amp;quot;5&amp;quot;:{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0}},{&amp;quot;1&amp;quot;:0,&amp;quot;2&amp;quot;:0,&amp;quot;3&amp;quot;:3},{&amp;quot;1&amp;quot;:1,&amp;quot;2&amp;quot;:0,&amp;quot;4&amp;quot;:1}]},&amp;quot;8&amp;quot;:{&amp;quot;1&amp;quot;:[{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0,&amp;quot;5&amp;quot;:{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:0}},{&amp;quot;1&amp;quot;:0,&amp;quot;2&amp;quot;:0,&amp;quot;3&amp;quot;:3},{&amp;quot;1&amp;quot;:1,&amp;quot;2&amp;quot;:0,&amp;quot;4&amp;quot;:1}]},&amp;quot;11&amp;quot;:4,&amp;quot;12&amp;quot;:0}"&gt;You can use custome module like : &lt;A href="https://www.loom.com/share/62e609600b0c442baa53ed71a727fa48" target="_blank"&gt;https://www.loom.com/share/62e609600b0c442baa53ed71a727fa48&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;{% form &lt;BR /&gt;form_to_use="{{ module.select_form.form_id }}" &lt;BR /&gt;response_response_type="{{ module.select_form.response_type }}" &lt;BR /&gt;response_message="{{ module.select_form.message }}" &lt;BR /&gt;response_redirect_id="{{ module.select_form.redirect_id }}" &lt;BR /&gt;response_redirect_url="{{module.select_form.redirect_url}}" &lt;BR /&gt;gotowebinar_webinar_key="{{ module.select_form.gotowebinar_webinar_key }}" &lt;BR /&gt;%} &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;SPAN&gt;Hope this helps!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;If we were able to answer your query, kindly help the community by marking it as a solution.&lt;BR /&gt;&lt;BR /&gt;Thanks and Regards.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 13:58:23 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/484917#M24718</guid>
      <dc:creator>webdew</dc:creator>
      <dc:date>2021-08-25T13:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Hubspot custom module form field title issue</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/485420#M24741</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/78983"&gt;@Indra&lt;/a&gt;&amp;nbsp;, "no_title" is a useful solution. I went with filling the "title" attribute with a text field, as the form would need a title anyway, in my case.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;{% form
    form_to_use="{{ module.form_field.form_id }}"
    response_response_type="{{ module.form_field.response_type }}"
    response_message="{{ module.form_field.message }}"
    response_redirect_id="{{ module.form_field.redirect_id }}"
    response_redirect_url="{{module.form_field.redirect_url}}"
    gotowebinar_webinar_key="{{ module.form_field.gotowebinar_webinar_key }}"
    title="{{ module.form_title }}"
%}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 02:53:31 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Hubspot-custom-module-form-field-title-issue/m-p/485420#M24741</guid>
      <dc:creator>Jsum</dc:creator>
      <dc:date>2021-08-26T02:53:31Z</dc:date>
    </item>
  </channel>
</rss>

