CMS Development

PYoganathan
Contributor

HubDB to Create Job Postings and Listings

SOLVE

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.

0 Upvotes
1 Accepted solution
piersg
Solution
Key Advisor

HubDB to Create Job Postings and Listings

SOLVE

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 %}

 

View solution in original post

7 Replies 7
BkT
Member

HubDB to Create Job Postings and Listings

SOLVE

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?

0 Upvotes
webdew
Guide | Diamond Partner
Guide | Diamond Partner

HubDB to Create Job Postings and Listings

SOLVE

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. 

piersg
Solution
Key Advisor

HubDB to Create Job Postings and Listings

SOLVE

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 %}

 

RJRao
Participant

HubDB to Create Job Postings and Listings

SOLVE

Hi @PYoganathan Can you create a video and let us know how can we do it.

0 Upvotes
PYoganathan
Contributor

HubDB to Create Job Postings and Listings

SOLVE

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.

piersg
Key Advisor

HubDB to Create Job Postings and Listings

SOLVE

@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 %}

 

Mike_Eastwood
Key Advisor | Gold Partner
Key Advisor | Gold Partner

HubDB to Create Job Postings and Listings

SOLVE

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?