Folks,

I have installed the jobsearch module along with some custom CCK fields. Everything works fine. However, there is a problem. Once I create the job, the formatting is not good.

Have a look at http://www.twin-india.org/index.php?q=node/1678

I would like to have it like this:

Title: xxxxx

City: xxxx

Contract/Permanent: xxxxx

Job Details: xxxx

instead of bunched up together. Which file and what do I edit to achieve this. Also I would like to be able to upload word/open office resumes. Is there a CCK extension to upload files? Please advise.

Thanks
Michael.

Comments

vm’s picture

you can use the core upload.module to upload files or use one of the CCK addons to do so. ie: filefield.module

with regrds to formatting the node, you will want to theme the node with a custom node-CONTENTTYPE.tpl.php in your theme. more information on this in the documentation area. A few video tutorials floating around that can be found with google as well. drupaldojo.com may be a good starting place as well as mustardseedmedia.com

kbahey’s picture

Status: Active » Closed (fixed)

This is a theming issue, not a module issue.

Use contemplate or just the .tpl.php mentioned in the previous post along with CSS to fix it.

mdavid2574’s picture

Status: Closed (fixed) » Active

Thank you folks.

The contemplate module fixed my problem.

I will try the file upload module (filefield.module) shortly and keep you all posted.

Thanks and God bless,

Michael.

kbahey’s picture

Status: Active » Fixed
mdavid2574’s picture

Folks,

The file upload module works fine.

However, I am unable to send the attachment from the jobsearch module.

I modified the jobsearch module and added the following to function theme_job_mail:

$body .= t('Content-Transfer-Encoding: base64'."\n");
$body .= t("\n\n*****Attached Resume*****\n\n Content-Disposition: attachment @File", array('@File' => $resume_node->field_upload_resume[0][value]));

However no attachment is sent.

Are these lines correct? Is this how an attachment is sent? Kindly guide me please.

Thanks for all the help so far. God bless you all.

Michael.

mdavid2574’s picture

Somebody please help.

vm’s picture

A) you are posting to an issue that is marked fixed
B) an issue that has nothing to do with the original post as far as I can tell.

mdavid2574’s picture

Status: Fixed » Closed (fixed)