|
nasthon1001 (silicon) v1.3.4 released |
|
Change Log - nasthon1001
|
|
Sunday, 14 December 2008 21:45 |
Changes
- Compatible with latest Jamit Job Board version - v3.4.11
- Minor fixes
Change Files:
css\menu.css js\block.js candidate-menu.php display-post.php employer-menu.php index-footer.php main-color.css main-print.css main.css readme.txt
1) Update /display-post.php
1.1) Add comments at top of the file just like themes/default/display-post.php 1.2) Show "back to list" button in FULL MODE only 1.3) Truncate employer profile description with 400 character. FIND: $btn_backToList = '<a href="#" onclick="window.location=\''. htmlentities(JB_get_go_back_link()) .'\'; return false;" class="iconbutton">' . '<div style="float:left; margin-right:3px;"><img src="'. JB_THEME_URL . 'images/icon/arrow2.gif"></div>'. '<div style="float:left;">'. $label['nasthon1005_link_back'] . '</div>' . '</a>'; CHANGE TO: if ($display_mode == 'FULL') { $btn_backToList = '<a href="#" onclick="window.location=\''. htmlentities(JB_get_go_back_link()) .'\'; return false;" class="iconbutton">' . '<div style="float:left; margin-right:3px;"><img src="'. JB_THEME_URL . 'images/icon/arrow2.gif"></div>'. '<div style="float:left;">'. $label['nasthon1005_link_back'] . '</div>' . '</a>'; } FIND: //$COMP_DESC = truncate_html_str( process_for_html_output( $prams_emp[86]), 400); $COMP_DESC = JB_process_for_html_output( $prams_emp[86]); CHANGE TO: $dummy = ''; $COMP_DESC = JB_truncate_html_str( JB_process_for_html_output( $prams_emp[86]), 400, $dummy); 2) Update /main.css
LOCATE: ".cat_subcategory" AND "A.cat_parent_link" REMOVE: font-family: "arial", "verdana", sans-serif; PUT THIS COMMENT ABOVE ".payment_block" /* Employers / Candidates payment.php page */ CHANGE ALL: fold-weight:normal; TO: font-weight:normal; LOCATE: TABLE.cat_table td{ CHANGE: wrap: no-wrap; TO: white-space: nowrap;
3) Update /css/menu.css
REMOVE: <style type="text/css"> </style>
4) Update /main-print.css FIND: #logo{ margin-bottom:4px; !important;}
TO: #logo{ margin-bottom:4px !important;} 5) Javascript error fix
edit: /js/block.js REPLACE WITH FOLLOWING FUNCTION: function switchByCatFormHome(_id, _id2, _id3, _id4, _id5, _id6){ //alert(_id.style.display); _id.style.display = 'inline'; _id.style.width="100%"; _id2.style.display = 'none'; _id3.style.display = 'none'; if (_id4 != null) _id4.style.display = 'none'; if (_id5 != null) _id5.style.display = 'none'; if (_id6 != null) _id6.style.display = 'none'; if (_id.id=="cat_1"){ this.document.getElementById('tablink01').className='tablink2'; this.document.getElementById('tablink02').className='tablink'; this.document.getElementById('tablink03').className='tablink'; if (_id4 != null) this.document.getElementById('tablink04').className='tablink'; if (_id5 != null) this.document.getElementById('tablink05').className='tablink'; if (_id6 != null) this.document.getElementById('tablink06').className='tablink'; }else if (_id.id=="cat_2"){ this.document.getElementById('tablink01').className='tablink'; this.document.getElementById('tablink02').className='tablink2'; this.document.getElementById('tablink03').className='tablink'; if (_id4 != null) this.document.getElementById('tablink04').className='tablink'; if (_id5 != null) this.document.getElementById('tablink05').className='tablink'; if (_id6 != null) this.document.getElementById('tablink06').className='tablink'; }else if (_id.id=="cat_3"){ this.document.getElementById('tablink01').className='tablink'; this.document.getElementById('tablink02').className='tablink'; this.document.getElementById('tablink03').className='tablink2'; if (_id4 != null) this.document.getElementById('tablink04').className='tablink'; if (_id5 != null) this.document.getElementById('tablink05').className='tablink'; if (_id6 != null) this.document.getElementById('tablink06').className='tablink'; }else if (_id.id=="cat_4"){ this.document.getElementById('tablink01').className='tablink'; this.document.getElementById('tablink02').className='tablink'; this.document.getElementById('tablink03').className='tablink'; if (_id4 != null) this.document.getElementById('tablink04').className='tablink2'; if (_id5 != null) this.document.getElementById('tablink05').className='tablink'; if (_id6 != null) this.document.getElementById('tablink06').className='tablink'; }else if (_id.id=="cat_5"){ this.document.getElementById('tablink01').className='tablink'; this.document.getElementById('tablink02').className='tablink'; this.document.getElementById('tablink03').className='tablink'; if (_id4 != null) this.document.getElementById('tablink04').className='tablink'; if (_id5 != null) this.document.getElementById('tablink05').className='tablink2'; if (_id6 != null) this.document.getElementById('tablink06').className='tablink'; }else if (_id.id=="cat_6"){ this.document.getElementById('tablink01').className='tablink'; this.document.getElementById('tablink02').className='tablink'; this.document.getElementById('tablink03').className='tablink'; if (_id4 != null) this.document.getElementById('tablink04').className='tablink'; if (_id5 != null) this.document.getElementById('tablink05').className='tablink'; if (_id6 != null) this.document.getElementById('tablink06').className='tablink2'; } return false; }
6) edit: /index-footer.php
FIND: <div id="searchMenu" class="menu" onMouseOver="menuMouseover(event)" style="text-align:left; width:136px; margin-top:-1x; padding-bottom:3px;"> REMOVE: width:136px;
7) Update path in candidates and employers menu files
edit: /candidate-menu.php
Change: if (JB_CANDIDATE_MENU_TYPE=='JS') { require("js_menu.php"); } elseif (JB_CANDIDATE_MENU_TYPE=='TXT') { require("text_menu.php"); } else { require("js_menu.php"); }
TO: if (JB_CANDIDATE_MENU_TYPE=='JS') { require(JB_basedirpath().JB_CANDIDATE_FOLDER."js_menu.php"); } elseif (JB_CANDIDATE_MENU_TYPE=='TXT') { require(JB_basedirpath().JB_CANDIDATE_FOLDER."text_menu.php"); } else { require(JB_basedirpath().JB_CANDIDATE_FOLDER."js_menu.php"); }
/employer-menu.php
Change: if (JB_EMPLOYER_MENU_TYPE=='JS') { require("js_menu.php"); } elseif (JB_EMPLOYER_MENU_TYPE=='TXT') {
require("text_menu.php"); } else { require("js_menu.php"); }
TO: if (JB_EMPLOYER_MENU_TYPE=='JS') { require(JB_basedirpath().JB_EMPLOYER_FOLDER."js_menu.php"); } elseif (JB_EMPLOYER_MENU_TYPE=='TXT') { require(JB_basedirpath().JB_EMPLOYER_FOLDER."text_menu.php"); } else { require(JB_basedirpath().JB_EMPLOYER_FOLDER."js_menu.php"); }
|
|
|
nasthon1001 (silicon) v1.3.3 released |
|
Change Log - nasthon1001
|
|
Tuesday, 04 November 2008 00:03 |
Changes
- Compatible with latest Jamit Job Board version - v3.4.10
- Minor fixes
|
|
Read more...
|
|
nasthon1001 (silicon) v1.3.2 released |
|
Change Log - nasthon1001
|
|
Sunday, 19 October 2008 00:05 |
Key Enhancement:
- Support plugin "NAS_trafficTracker" (Website traffic tracker code embedding, e.g. Google Analytics). Note, this version removed the /include/_webtraffic.php, as a reminder to existing customer (v1.1.0) who wants to upgrade to this version.
- Print-Friendly Job Post Details page.
- Print-Friendly for Resumes Viewing.
|
|
Read more...
|
|
nasthon1001 (silicon) v1.3.1 released |
|
Change Log - nasthon1001
|
|
Sunday, 21 September 2008 14:51 |
|
Minor update and bug fix. Compatible with Jamit Job Board (JJB) v3.4.9
|
|
Read more...
|
|
nasthon1001 (silicon) v1.3.0 released |
|
Change Log - nasthon1001
|
|
Monday, 15 September 2008 00:00 |
|
We are pleased to announce that Jamit Job Board template - nasthon1001 (silicon) is upgraded to version 1.3.0.
|
|
Read more...
|
|
|
|
|
|