Hello ALL

I'm having problems in combinig Content types with webforms content.

I've created a content type, lets imagine its a Job Vacancy, with some simple fields where i describe the Job, conditions, etc. One of the fields i have is node reference. Here i reference to a webform content where its possible to submit the CV.

But i want to put the Webform in the same page of the description of the Job vacancy...

I've searched but still didnt find a solution...

Can anyone help???

Thanx

David

Comments

sskully’s picture

Hi, I was wanting to do the same thing. Have you found a solution for this?

Thanks

ornilo’s picture

Yeah, I really want to do the same as you guys. Anyone help us!

serjohn’s picture

use Webform Block, Create block whith webform and past after node content in bottom sitebar or left, right sitebar.
Sorry for my English.

IamOnStage’s picture

Using the webform as a block is very helpful as you can make the block Content Type specific.

The problem I am having is submitting the node title of the Content Type page rather than the title of the block.

Does anyone know how to submit the title of the content type?

rootical’s picture

There are lots of variants. You can create a field in your webform, hide it with css so it would not be abailible to users and pass the node`s title from your h2 or h3 via jquery with code like this:

$(document).ready(function(){
var name = $(".yourclass h2").html();
var name = jQuery.trim(name);
$("#companys-name").val(name);
});

Also you can do this with tokens i think..