CMS Development

PYoganathan
Contributeur

HubDB to Create Job Postings and Listings

Résolue

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 Votes
1 Solution acceptée
piersg
Solution
Conseiller clé

HubDB to Create Job Postings and Listings

Résolue

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

 

Voir la solution dans l'envoi d'origine

7 Réponses
BkT
Membre

HubDB to Create Job Postings and Listings

Résolue

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 Votes
webdew
Guide | Partenaire solutions Diamond
Guide | Partenaire solutions Diamond

HubDB to Create Job Postings and Listings

Résolue

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
Conseiller clé

HubDB to Create Job Postings and Listings

Résolue

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

Résolue

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

0 Votes
PYoganathan
Contributeur

HubDB to Create Job Postings and Listings

Résolue

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
Conseiller clé

HubDB to Create Job Postings and Listings

Résolue

@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
Conseiller clé | Partenaire solutions Gold
Conseiller clé | Partenaire solutions Gold

HubDB to Create Job Postings and Listings

Résolue

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?