nht48823

Topic: Additional Attachment

I have been testing 1.8. Nice improvements from 1.7, great job!

Question:
How can I have additional attachments for file type? Like docx and txt file format. Many people seem to use those two file type….. Thanks

navjotjsingh

Re: Additional Attachment

Open templates/_default/job-details.tpl and find this line:

Code:
apply_cv: { accept: "pdf|rtf|doc|odt" }

and change it to:

Code:
apply_cv: { accept: "pdf|rtf|doc|odt|txt|docx" }

This will allow txt and docx attachments too for applying.

navjotjsingh

Re: Additional Attachment

One more thing, Open your _includes/translations.ini and find this line:

Code:
cv_info = "Max. 3 MB. Recommended formats: PDF, RTF, DOC, ODT. "

Change text of this too

Code:
cv_info = "Max. 3 MB. Recommended formats: PDF, RTF, DOC, ODT, TXT, DOCX. "

nht48823

Re: Additional Attachment

Excellent! Thank you very much. Cheers

acm

Re: Additional Attachment

how can i do this in jb 1.7?
my users must upload only jpg & png and the size of files must be 600 KB max

navjotjsingh

Re: Additional Attachment

For 1.7, use this tutorial: http://www.jobberbase.com/forum/post6150.html#p6150

For File Size, you can change it via editing the config.php in root folder. Find the code:

Code:
define('MAX_CV_SIZE', 3000000); // approx. 3 mb

and change it to

Code:
define('MAX_CV_SIZE', 614400); // 600 KB

acm

Re: Additional Attachment

thanks, it's OK now!