46 comments found.
The site provides: User’s personal account, selection of vacancies, compilation and storage of resumes, etc. Please, comment on my questions: 1. How is the backend implemented in this case? 2. Can vacancies be downloaded from external APIs with job databases?
Stanislav
I’m interested in the subject, but the page would be in Brazilian Portuguese ( Pt -Br ) . It offers already translated support for translation?
Hi,
The case is, Opening – Job Board HTML Template (http://themeforest.net/item/opening-job-board-html-template/7074792?ref=bestwebsoft) is not a WordPress theme. This is a static HTML template that does not have an admin panel, as well as it does not have any functionality. Also, it does not work with the database. All data is added to this template manually, using any code editor (for instance, sublime text). You can change all text in the template files manually, using a text editor. Based of this HTML template, we have developed a full-featured Opening – Job Board Wordpress Theme (https://creativemarket.com/bestwebsoft/190541-Opening-Job-Board-Wordpress-Theme?u=bestwebsoft), which works with the database and provides the admin panel. Wordpress theme is ready to translate and you can add to it a translation you need. Please follow us on twitter (https://twitter.com/bestwebsoft) to stay tuned for the latest releases and updates of the existing products. In case you have any questions, please let us know.
Sincerely, BestWebHolding Team
may i ask after i purchase, when bootstrap update, can i udate it?
Hi,
Yes, you can update this template after bootstrap update, but we can’t tell you when this template with bootstrap will be released.
Regards, BestWebSoft Support Team
This template simple, formal and clean design, i love it, but I need this template with bootstrap and responsive in mobile devices. Thanks
Hi,
Opening – Job Board HTML Template was initially developed without bootstrap and responsive. We don’t plan to introduct bootstrap to this template, but the responsive introduction is priority now and we work on it. Please follow us on twitter (https://twitter.com/bestwebsoft) to stay tuned for the latest releases and updates of the existing products.
Sincerely, BestWebHolding Team
Hi there! I just bought your template and hoped, that the multiselect for town or category will be working. But neither of the files (so home.html 1 to 4) are doing anything with the selected values. They just toggle the checkbox and that’s it
or am I missing something?
Hi,
The case is, Opening – Job Board HTML Template (http://themeforest.net/item/opening-job-board-html-template/7074792?ref=bestwebsoft) is not a WordPress theme. This is a static HTML template that does not have an admin panel, as well as it does not have any functionality. Also, it does not work with the database. All data is added to this template manually, using any code editor (for instance, sublime text). Based of this HTML template, we have developed a full-featured Opening – Job Board Wordpress Theme (https://creativemarket.com/bestwebsoft/190541-Opening-Job-Board-Wordpress-Theme?u=bestwebsoft), which works with the database and provides the admin panel.
Sincerely, BestWebHolding Team
I am not sure if you understood my question
I am NOT looking for a Wordpress Template or an Admin Panel – I am well aware that this is just a HTML template.
But I was hoping that buying this template would also have included some features like this http://harvesthq.github.io/chosen/
All I want is, that the selected values out of the multiselect are more then just a toggle that (un)checks the checkboxes.
Is there an option?
Right now this “feature” is useless and looks pretty but has no usable functionality behind it …
But this does not seem to work with this template. Can you add or send me the corresponding JavaScript? Or add this to the HTML template?
Thanks!
Hi,
Please try to do next:
1) in the template folder find the “js” folder 2) in the “js” folder find the file “script.js” and open it with any text editor ( “Sublime Text”, for example) 3) in the file “script.js” replace rows 28-85 with the following content:
/* Dropdown */
$( '.with-dropdown' ).on( 'click', function( e ) {
$( '.dropdown#dropdown-' + this.id ).css( 'width', $( this ).parent().css( 'width' ) );
$( '.dropdown#dropdown-' + this.id ).toggle();
e.stopPropagation();
});
$( document ).click( function( e ) {
if ( $( e.target ).closest( '.dropdown' ).length == 0 && $( e.target ).closest( '.with-dropdown' ).length == 0 ) {
$( '.dropdown' ).hide();
e.stopPropagation();
}
});
/* Checkboxes */
$( 'input:checkbox' ).hide().not( '.dark' ).each(function() {
$( this ).before( '<div class="checkbox" />' );
if ( $( this ).parent().text() ) {
$( this ).parent().addClass( 'checkbox-label' );
}
if ( $( this ).attr( 'checked' ) ) {
$( this ).prev( 'div' ).css( 'background-position', '-63px -16px' ).addClass( 'checked' );
} else {
$( this ).prev( 'div' ).css( 'background-position', '-15px -16px' );
}
});
$( '.checkbox-label' ).each( function() {
$( this ).click( function( e ) {
// var checkedCategory;
if ( $( this ).find( '.checkbox' ).hasClass( 'checked' ) ) {
$( this ).find( '.checkbox' ).removeClass( 'checked' );
$( this ).find( '.checkbox' ).css( { 'background-position' : '-15px -16px', 'opacity' : '1' } );
$( this ).find( 'input' ).attr( 'checked', false );
} else {
$( this ).find( '.checkbox' ).addClass( 'checked' );
$( this ).find( '.checkbox' ).css( { 'background-position' : '-63px -16px', 'opacity' : '1' } );
$( this ).find( 'input' ).attr( 'checked', true );
}
var checkedCategory = $( this ).parent().find( '.checkbox-label > .checked' ).parent().map( function() {
return $( this ).text();
}).get().join( ", " );
$( this ).parent().prev( 'label' ).children( '.with-dropdown' ).val( checkedCategory );
e.preventDefault();
e.stopPropagation();
});
$( this ).mouseover( function( e ) {
if ( ! $( this ).find( '.checkbox' ).hasClass( 'checked' ) ) {
$( this ).find( '.checkbox' ).css( { 'background-position' : '-63px -16px', 'opacity' : '0.5' } );
}
e.preventDefault();
e.stopImmediatePropagation();
});
$( this ).mouseleave( function( e ) {
if ( ! $( this ).find( '.checkbox' ).hasClass( 'checked' ) ) {
$( this ).find( '.checkbox' ).css( 'background-position', '-15px -16px' );
}
$( this ).find( '.checkbox' ).css( 'opacity', '1' );
e.preventDefault();
e.stopImmediatePropagation();
});
});
4) save the changes
After all will be done you probably get what you need. If you have extra questions, please contact us.
Sincerely, BestWebHolding Team
awesome!! thank you very very much! 
Hi,
You’re welcome! Always glad to help! Please feel free to contact us with any questions in future.
Sincerely, BestWebHolding Team
how is the data stored? database/text?
Hi,
This is a static HTML template that does not have an admin panel, as well as it does not have any functionality. Also, it does not work with the database. All data is added to this template manually, using any code editor (for instance, sublime text). Based of this HTML template, we have developed a full-featured Opening – Job Board Wordpress Theme (https://creativemarket.com/bestwebsoft/190541-Opening-Job-Board-Wordpress-Theme?u=bestwebsoft), which works with the database and provides the admin panel.
Sincerely, BestWebHolding Team
I have already bought this item. And i saw mobile image. But how can we use on mobil? I’m asking for HTML version.
Greetings,
Thank you for contacting us and thank you for purchasing our product. This HTML template is not responsive, hence it is not adapted for mobile devices. This is stated in product features – http://prntscr.com/6u0b9h.
If you’d like, we could make the template responsive and customize it to match all of your requirements. If so, please specify, what exactly you want changed in this template. Then our manager will contact you with all the essential data on the time required for the customization following your requirements, specification requests and further guidelines.
Regards, BestWebHolding Team
Responsive version?
Hi kaidop,
No, this template is not responsive. It is designed based on 960 grid system and has a fixed layout.
Creation of a responsive Opening – Job Board HTML Template version is currently under consideration.
Regards, BestWebHolding Team
i am using unix based hosting service through register.com, will i be able to transfer and use this template using FTP server and edit and build my own site? sorry for sounding retarded. thanks
Greetings,
Yes, after you purchase this template, you can upload it as a regular HTML template to your hosting using the FTP, as well as edit it and use it the way you need. You can find a user guide on working with the FTP on your hosting on the website of your hosting provider, for instance, on this page https://forum.web.com/register/faq/#Hosting/Basic_FTP_Instructions.htm.
Regards, BestWebHolding Team
Hi – Your preview page isn’t working.
It’s ok now, must’ve been a temporary thing.
Great theme! One question though. How can I centralize the Slider Image?
Hi Andy,
Unfortunately, your question is not entirely clear to us, could you please specify? Also, could yoi please provide a screenshot of the part or the page that is displayed incorrectly, if possible?
Regards, BestWebHolding Team
On the demo site, the code is minified and the javascript is obfuscated. Is this how its sold? or is it sold in human friendly format?
Are the PSDs included?
Hi mhamson,
It is sold in human friendly format.
Sincerely, BestWebHolding Team
Hi, nice template! I will wait for a wordpress version
GLWS!
Hi, Is this teplate responzive. As I can see in demo, I cant see responzive template- Thank you.
Dear Martin,
You are absolutely right, this HTML template is not responsive.
Sincerely, BestWebHolding Team
hi there, wt database system is it using? mysql? will it include the database configuration file?
Hi hkmsua,
This is an HTML5 template. It does not feature any functionality for working with the database. All this functionality will be available in the WordPress CMS theme, which is currently under development. Please follow our profile on Themeforest for the updates.
Sincerely, BestWebHolding Team
Is this not mobile compatible? I hope the WP one you are working on is, this not being compatible already means I can’t use it
Hi tripflex,
WP version will be compatible with mobile devices 320-380px width.
Sincerely, BestWebHolding Team
Hi DC1000,
The WordPress version is currently under development. Unfortunately, we cannot estimate, when it will be finished. Please follow our profile for any updates on the release date.
Regards, BestWebHolding Team
Any news on the wordpress version ?? 
Hi,
in the Live Preview, your “script.js” is encrypted.
i don’t want javascript file to be encrypted.
can i have the file “script.js” decrypted version ??
Hi esolutionmaroc,
Do not worry, when you purchase the product, the files won’t be encrypted. The encrypted files are used in Live Preview only.
Sincerely, BestWebHolding Team
Hi.
When are you guys launching wordpress version?
Hi,
Unfortunately, we cannot tell you the exact date.
Sincerely, BestWebHolding Team