CMS Development

PYoganathan
Colaborador

HubDB to Create Job Postings and Listings

resolver

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 Me gusta
1 Soluciones aceptada
piersg
Solución
Asesor destacado

HubDB to Create Job Postings and Listings

resolver

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

 

Ver la solución en mensaje original publicado

7 Respuestas 7
BkT
Miembro

HubDB to Create Job Postings and Listings

resolver

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 Me gusta
webdew
Guía | Partner nivel Diamond
Guía | Partner nivel Diamond

HubDB to Create Job Postings and Listings

resolver

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
Solución
Asesor destacado

HubDB to Create Job Postings and Listings

resolver

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
Participante

HubDB to Create Job Postings and Listings

resolver

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

0 Me gusta
PYoganathan
Colaborador

HubDB to Create Job Postings and Listings

resolver

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
Asesor destacado

HubDB to Create Job Postings and Listings

resolver

@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
Asesor destacado | Partner nivel Gold
Asesor destacado | Partner nivel Gold

HubDB to Create Job Postings and Listings

resolver

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?