May 21, 2021 4:56 PM
Hello,
I am looking into HubDB to display the job listings for our company which I feel would be a great way to approach this. However, how would I be able to create unique pages with unique contact forms based on a users selection as HubDB does not have a column selection for forms.
Solved! Go to Solution.
May 24, 2021 10:11 AM
Hi @PYoganathan You could have a column for form ID, which you can copy from the URL of the form edit page or from the form embed code (looks like 4e2baa89-a77e-4c23-859c-07123e781899), then in your HubL do this:
{% if row.form_id %}
{% form
form_to_use="{{ row.form_id }}"
%}
{% endif %}
Jun 28, 2021 4:52 PM
If a company using Greenhouse as their job listing platform, and they switch to Hubspot as a new platform. How can you migrate greenhouse over to Hubspot?
May 24, 2021 10:25 AM
Hi @PYoganathan ,
You can review this page and add scroll bottom code https://developers.hubspot.com/docs/cms/guides/dynamic-pages/hubdb .
For form you need to create rich text field and add form code inside that field.
Hope this helps!
If we were able to answer your query, kindly help the community by marking it as a solution.
Thanks and Regards.
May 24, 2021 10:11 AM
Hi @PYoganathan You could have a column for form ID, which you can copy from the URL of the form edit page or from the form embed code (looks like 4e2baa89-a77e-4c23-859c-07123e781899), then in your HubL do this:
{% if row.form_id %}
{% form
form_to_use="{{ row.form_id }}"
%}
{% endif %}
Jan 20, 2023 4:12 PM
Hi @PYoganathan Can you create a video and let us know how can we do it.
May 25, 2021 11:04 AM
This is a great idea for the Apply Now call to action which would lead them to a dedicated form page. Now this place would be great to include the job description information along with the form.
May 26, 2021 4:16 AM
@PYoganathan You want to add the description above the form? Just need to do:
(assuming that "description" is the column name for description)
{% if row.form_id %}
<p>{{row.description}}</p>
{% form
form_to_use="{{ row.form_id }}"
%}
{% endif %}
May 24, 2021 12:56 AM
Hi @PYoganathan
I recommend using HubSpot's Custom Objects (requires and Enterprise license) to build out your Job Posting site.
Then you can keep track of all the Jobs and link them to Companies and Contacts.
Have fun
Mike
p.s. We've just been looking at a project using WordPress if you're interested?