|
Jamit Job Board template - nasthon1004 (freedom) is upgraded to version 1.1.1.
Update:
1) Add "main-cust.css" in: /candidate-header.php /employer-header.php, /candidate-login-form.php
<link rel="styleSheet" type="text/css" href="/store/<?= JB_THEME_URL ?>main-cust.css">
2) Miss 2 css classes in "employers.css"
#emmenu{ background-color:#D0D0D0; width:100%; border:0px solid red; height:36px; border: 1px solid; border-color: #f0f0f0 #D0D0D0 #909090 #f0f0f0; border-right:0px; }
#emmenu_text{ margin-left:5px; display:table; clear:both; width:99%; }
3) REMOVE _webtraffic.php a. delete file /include/_webtraffic.php b. edit /index-footer.php REMOVE: include(dirname(__FILE__).'/include/_webtraffic.php');
4) Add 5 extra Jamit official hooks at the end of the </body> index_before_body_end can_before_body_end can_outside_before_body_end emp_before_body_end emp_outside_before_body_end
edit: /index-footer.php ADD BEFORE </body>:
<?php if ($can_outside_footer == true){ JBPLUG_do_callback('can_outside_before_body_end', $A = false); }else if ($emp_outside_footer == true){ JBPLUG_do_callback('emp_outside_before_body_end', $A = false); }else{ JBPLUG_do_callback('index_before_body_end', $A = false); } ?>
/candidates-footer.php ADD BEFORE </body>: <?php JBPLUG_do_callback('can_before_body_end', $A = false);?> /employer-footer.php ADD BEFORE </body>: <?php JBPLUG_do_callback('emp_before_body_end', $A = false);?>
/employers-outside-footer.php
ADD: <?php $emp_outside_footer = true; ?>
/candidates-outside-footer.php
ADD: <?php $can_outside_footer = true; ?>
5) REMOVE FILES: /nas_test.php /phpinfo.php
6) css fix edit: /main-ext.css CHANGE: .nav_button_hover{background: url('images/nav-btn') TO: .nav_button_hover{background: url('images/nav-btn.gif') 7) REMOVE deprecated css classes
edit: /index-header.php REMOVE: <style> A.white_link ... .footer_text </style> 8) Update images edit: /images: -Postit-large.gif -PremiumPostit-large.gif 9) Footer link color fix
10) Other css formatting edit: -main-ext.css #hbar_bottom -nas_hbar.php MODIFY: <div id="hbar_bottom">...</div>
11) Bug Fix for JB_render_box_top() edit: /info-box-top.php Add: <?php $width = str_replace("%", "", $width); ?>
12) Add hook "popup_before_body_end"
edit: /nas_email_others_window.php
ADD: <?php JBPLUG_do_callback('popup_before_body_end', $A = false);?>
Change Files:
/images/Postit-large.gif /images/PremiumPostit-large.gif /lang/english_default.php candidate-login-form.php candidates-footer.php candidates-header.php candidates-outside-footer.php employer-menu.php employers-footer.php employers-header.php employers-outside-footer.php employers.css index-footer.php index-header.php info-box-top.php main-ext.css nas_email_others_window.php nas_hbar.phpreadme.txt AdminGuide-nasthon1004-v1.0.3.pdf |