|
#1
| ||||
| ||||
| Upgrade Notice - vBulletin 3.7.2 We have uploaded new versions of our styles for vBulletin 3.7.2. Customers can find the new files in the customers area. All vBulletin users are encouraged to upgrade as soon as possible. Bugs/Issues We encourage all our skin users to submit bug reports via our bug tracker. If you have further problems, not relating to bugs etc you can open a support thread for assistance. Manual Changes By popular demand we will document how to manually update tempaltes when few changes are made in an update. Please see the below posts for guidance. |
|
#2
| ||||
| ||||
| Manual Edits album_pictureview Find: Code: <div><a href="album.php?$session[sessionurl]do=editpictures&albumid=$albuminfo[albumid]&pictureid=$pictureinfo[pictureid]">$vbphrase[edit_picture]</a></div> Code: <div><a href="album.php?$session[sessionurl]do=editpictures&albumid=$albuminfo[albumid]&pictureid=$pictureinfo[pictureid]&frompicture=1">$vbphrase[edit_picture]</a></div> Find: Code: <input type="hidden" name="albumid" value="$albuminfo[albumid]" /> Code: <input type="hidden" name="albumid" value="$albuminfo[albumid]" /> <input type="hidden" name="frompicture" value="$frompicture" /> Find: Code: <if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if> Code: <if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if> $template_hook[footer_links] Find: Code: <div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div> <div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div> <div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div> <div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div> Code: <if condition="$show['post_queue']"><div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div></if> <if condition="$show['attachment_queue']"><div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div></if> <if condition="$show['mass_move']"><div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div></if> <if condition="$show['mass_prune']"><div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div></if> Replace entire template with: Code: <a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=$oppositesort&sort=$sortfield&pp=$perpage&page=$pagenumber" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/sort$oppositesort.gif" alt="$vbphrase[reverse_sort_order]" border="0" /></a> Find: Code: <if condition="$show['loggedinusers']"> <!-- logged-in users --> Code: $template_hook[forumhome_wgo_pos1] <if condition="$show['loggedinusers']"> <!-- logged-in users --> Code: <!-- end logged-in users --> </if> Code: <!-- end logged-in users --> </if> $template_hook[forumhome_wgo_pos2] Code: <div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div> Code: <div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div> $template_hook[forumhome_wgo_stats] Code: <if condition="$show['birthdays']"> <!-- today's birthdays --> Code: $template_hook[forumhome_wgo_pos3] <if condition="$show['birthdays']"> <!-- today's birthdays --> Find: <!-- end today's birthdays --> </if> Code: <!-- end today's birthdays --> </if> $template_hook[forumhome_wgo_pos4] Code: </table> <br /> <!-- end what's going on box --> Code: $template_hook[forumhome_wgo_pos5] </table> <br /> <!-- end what's going on box --> Find: Code:
{
textarea.focus();
textarea.select();
} Code:
{
textarea.focus();
textarea.select();
}
return false; Find: Code: <a href="$sorturl&order=ASC&sort=username&pp=$perpage$usergrouplink">$vbphrase[username]</a> Code: <a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=ASC&sort=username&pp=$perpage$usergrouplink">$vbphrase[username]</a> Code: <if condition="$show['datejoinedcol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&order=ASC&sort=joindate&pp=$perpage$usergrouplink">$vbphrase[join_date]</a> $sortarrow[joindate]</td></if> <if condition="$show['postscol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&order=DESC&sort=posts&pp=$perpage$usergrouplink">$vbphrase[posts]</a> $sortarrow[posts]</td></if> <if condition="$show['lastvisitcol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&order=DESC&sort=lastvisit&pp=$perpage$usergrouplink">$vbphrase[last_visit]</a> $sortarrow[lastvisit]</td></if> <if condition="$show['reputationcol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&order=DESC&sort=reputation&pp=$perpage$usergrouplink">$vbphrase[reputation]</a> $sortarrow[reputation]</td></if> Code: <if condition="$show['datejoinedcol']"><td class="thead" nowrap="nowrap"><a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=ASC&sort=joindate&pp=$perpage$usergrouplink">$vbphrase[join_date]</a> $sortarrow[joindate]</td></if> <if condition="$show['postscol']"><td class="thead" nowrap="nowrap"><a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=DESC&sort=posts&pp=$perpage$usergrouplink">$vbphrase[posts]</a> $sortarrow[posts]</td></if> <if condition="$show['lastvisitcol']"><td class="thead" nowrap="nowrap"><a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=DESC&sort=lastvisit&pp=$perpage$usergrouplink">$vbphrase[last_visit]</a> $sortarrow[lastvisit]</td></if> <if condition="$show['reputationcol']"><td class="thead" nowrap="nowrap"><a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=DESC&sort=reputation&pp=$perpage$usergrouplink">$vbphrase[reputation]</a> $sortarrow[reputation]</td></if> Code: <if condition="$show['agecol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&order=ASC&sort=age&pp=$perpage$usergrouplink">$vbphrase[age]</a> $sortarrow[age]</td></if> Code: <if condition="$show['agecol']"><td class="thead" nowrap="nowrap"><a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=ASC&sort=age&pp=$perpage$usergrouplink">$vbphrase[age]</a> $sortarrow[age]</td></if> Last edited by MaestroX; 24-06-2008 at 08:00 PM. |
|
#3
| ||||
| ||||
| Manual Edits Cont. memberlist_search Find both instances of: Code: $vbphrase[advanced_search] Code: $vbphrase[search] Find: Code: <span class="smallfont">$vbphrase[try_controls_below_for_older_posts]</span> Code: <span class="smallfont">$vbphrase[try_controls_below_for_older_pictures]</span> Find: Code: <ul class="userlist floatcontainer" id="ignorelist"> $ignorelist </ul> Code: <if condition="$ignorelist"> <ul class="userlist floatcontainer" id="ignorelist"> $ignorelist </ul> </if> modifyoptions Code: <legend><label for="cb_receivepm">$vbphrase[private_messaging]</label></legend> <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%"> Code: <legend><label for="cb_receivepm">$vbphrase[private_messaging]</label></legend> <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%"> <tbody> Code: <td><label for="cb_receivepm"><input type="checkbox" name="options[receivepm]" value="1" id="cb_receivepm" onclick="toggle_disabled(this.checked, 'pmoptions')" $checked[receivepm] />$vbphrase[enable_private_messaging]</label><input type="hidden" name="set_options[receivepm]" value="1" /></td> </tr> Code: <td><label for="cb_receivepm"><input type="checkbox" name="options[receivepm]" value="1" id="cb_receivepm" onclick="toggle_disabled(this.checked, 'pmoptions')" $checked[receivepm] />$vbphrase[enable_private_messaging]</label><input type="hidden" name="set_options[receivepm]" value="1" /></td> </tr> </tbody> Find: Code: <input type="image" src="$vboptions[cleargifurl]" width="1" height="1" /> Code: <input type="image" src="$vboptions[cleargifurl]" style="width: 1px; height: 1px;" /> Find: Code: <if condition="$show['notifications']"> Code: <if condition="$show['notifications'] AND $show['popups']"> Find: Code: recip_sugg.allow_multiple = true; Code: <if condition="$show['sendmultiple']">recip_sugg.allow_multiple = true;</if> Code:
<span style="display:none" onclick="return swapbcc(this);" id="bccspan1">[<a href="#">$vbphrase[bcc]</a>]</span>
<span id="bccspan2">$vbphrase[bcc] $vbphrase[recipient_usernames]<br /></span>
<div id="bccpmrecips"><textarea id="bccpmrecips_txt" name="bccrecipients" rows="<if condition="is_browser('mozilla')">1<else />2</if>" cols="50" tabindex="1">$pm[bccrecipients]</textarea></div>
<if condition="$show['popups']">
<div class="vbmenu_popup" id="bccpmrecips_menu" style="display:none; z-index:50"></div>
<script type="text/javascript">
<!--
vbmenu_register('bccpmrecips', true);
bccrecip_sugg = new vB_AJAX_NameSuggest('bccrecip_sugg', 'bccpmrecips_txt', 'bccpmrecips');
bccrecip_sugg.allow_multiple = true;
<if condition="$show['bcclink']">
fetch_object('bccpmrecips').style.display = 'none';
fetch_object('bccspan2').style.display = 'none';
fetch_object('bccspan1').style.display = '';
function swapbcc(obj)
{
obj.style.display = 'none';
fetch_object('bccpmrecips').style.display = '';
fetch_object('bccspan2').style.display = '';
return false;
}
</if> //-->
</script> Code:
<if condition="$show['sendmultiple']">
<span style="display:none" onclick="return swapbcc(this);" id="bccspan1">[<a href="#">$vbphrase[bcc]</a>]</span>
<span id="bccspan2">$vbphrase[bcc] $vbphrase[recipient_usernames]<br /></span>
<div id="bccpmrecips"><textarea id="bccpmrecips_txt" name="bccrecipients" rows="<if condition="is_browser('mozilla')">1<else />2</if>" cols="50" tabindex="1">$pm[bccrecipients]</textarea></div>
<if condition="$show['popups']">
<div class="vbmenu_popup" id="bccpmrecips_menu" style="display:none; z-index:50"></div>
<script type="text/javascript">
<!--
vbmenu_register('bccpmrecips', true);
bccrecip_sugg = new vB_AJAX_NameSuggest('bccrecip_sugg', 'bccpmrecips_txt', 'bccpmrecips');
bccrecip_sugg.allow_multiple = true;
<if condition="$show['bcclink']">
fetch_object('bccpmrecips').style.display = 'none';
fetch_object('bccspan2').style.display = 'none';
fetch_object('bccspan1').style.display = '';
function swapbcc(obj)
{
obj.style.display = 'none';
fetch_object('bccpmrecips').style.display = '';
fetch_object('bccspan2').style.display = '';
return false;
}
</if>
//-->
</script>
</if> Code: <div>$vbphrase[separate_multiple_names]</div> Code: <if condition="$show['sendmultiple']"><div>$vbphrase[separate_multiple_names]</div></if> search_forums Find: Code: <input type="image" src="$vboptions[cleargifurl]" width="1" height="1" /> Code: <input type="image" src="$vboptions[cleargifurl]" style="width: 1px; height: 1px;" /> Find: Code: <img id="collapseimg_newmessage_dialog" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_nemessage_dialog].gif" alt="" border="0" /> Code: <img id="collapseimg_newmessage_dialog" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_newmessage_dialog].gif" alt="" border="0" /> Find: Code: <div><a href="album.php?$session[sessionurl]do=editpictures&albumid=$album[albumid]&pictureid=$pictureinfo[pictureid]">$vbphrase[edit_picture]</a></div> Code: <div><a href="album.php?$session[sessionurl]do=editpictures&albumid=$album[albumid]&pictureid=$pictureinfo[pictureid]&frompicture=1">$vbphrase[edit_picture]</a></div> Find: Code: <div class="fieldset">$vbphrase[move_posts_note]</div> Code: <div class="fieldset">$vbphrase[copy_posts_note]</div> Find: Code: <li><label for="useraction_ban"><input type="radio" name="useraction" value="ban" id="useraction_ban" />$vbphrase[ban_users]</label> Code: <li><label for="useraction_ban"><input type="radio" name="useraction" value="ban" id="useraction_ban" />$vbphrase[ban_users]</label></li> Find: Code: <strong><div id="thread_title">$titlebit</div></strong> Code: <div><strong id="thread_title">$titlebit</strong></div> Code: <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> Code: <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <thead> Code: <tbody id="collapseobj_newpost_options" style="$vbcollapse[collapseobj_newpost_options]"> Code: </thead> <tbody id="collapseobj_newpost_options" style="$vbcollapse[collapseobj_newpost_options]"> USERCP_SHELL Find: Code: <tr><td class="$navclass[moderatedthreads]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewthreads&type=moderated">$vbphrase[threads]</a></td></tr> <tr><td class="$navclass[moderatedposts]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewposts&type=moderated">$vbphrase[posts]</a></td></tr> Code: <if condition="$show['moderatedposts']"> <tr><td class="$navclass[moderatedthreads]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewthreads&type=moderated">$vbphrase[threads]</a></td></tr> <tr><td class="$navclass[moderatedposts]" nowrap="nowrap"><a class="smallfont" href="moderation.php?$session[sessionurl]do=viewposts&type=moderated">$vbphrase[posts]</a></td></tr> </if> Last edited by MaestroX; 24-06-2008 at 08:22 PM. |
|
#4
| ||||
| ||||
| Manual Edits Cont. visitormessage_editor Find: Code: <input type="hidden" name="u" value="$userinfo[userid]" /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> Code: <input type="hidden" name="u" value="$userinfo[userid]" /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tbody> Code: <tbody id="collapseobj_editpost_delete" style="$vbcollapse[collapseobj_editpost_delete]"> <tr> <td class="panelsurround" align="center"> <div class="panel"> <div align="$stylevar[left]" style="max-width:$stylevar[formwidth]; width:auto !important; width:$stylevar[formwidth_usercp]"> Code: </tbody> <tbody id="collapseobj_editpost_delete" style="$vbcollapse[collapseobj_editpost_delete]"> <tr> <td class="panelsurround" align="center"> <div class="panel"> <div align="$stylevar[left]" style="max-width:$stylevar[formwidth]; width:auto !important; width:$stylevar[formwidth_usercp]"> Find: Code: <a href="$sorturl&order=desc&sort=time&pp=$perpage&page=$pagenumber">$vbphrase[last_activity]</a> $sortarrow[time] Code: <a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=desc&sort=time&pp=$perpage&page=$pagenumber">$vbphrase[last_activity]</a> $sortarrow[time] Code: <a href="$sorturl&order=asc&sort=username&pp=$perpage&page=$pagenumber">$vbphrase[username]</a> $sortarrow[username] Code: <a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=asc&sort=username&pp=$perpage&page=$pagenumber">$vbphrase[username]</a> $sortarrow[username] Code: <td class="thead"><a href="$sorturl&order=asc&sort=location&pp=$perpage&page=$pagenumber">$vbphrase[location_temp]</a> $sortarrow[location]</td> Code: <td class="thead"><a href="$sorturl<if condition="!$show['sorturlnoargs']">&</if>order=asc&sort=location&pp=$perpage&page=$pagenumber">$vbphrase[location_temp]</a> $sortarrow[location]</td> |
|
#5
| |||
| |||
| Re: Upgrade Notice - vBulletin 3.7.2 Are all the edits the same for the different styles? |
|
#6
| |||
| |||
| Re: Upgrade Notice - vBulletin 3.7.2 Awesome. Thanks heaps for the manual upgrades (But I'd too like to know what style they're for, or if they're for all of them!), really helps us with custimisations! |
|
#7
| ||||
| ||||
| Re: Upgrade Notice - vBulletin 3.7.2 Hello, These edits work for all our styles (and even most custom styles). The only difference is the navbar edit needs to be in the header template for our Webpoint style. So once you've upgraded check the list of "Out Dated" templates and make the changes listed here. Any problems, let me know ![]() |
|
#8
| |||
| |||
| Re: Upgrade Notice - vBulletin 3.7.2 All edits done here in Red Carbon. Note there are a few quotes misplaced in areas in the above where the template name to be edited looks at first glance to be part of a template edit. Also in Red Carbon the: Find: Code: </table><br /><!-- end what's going on box --> Replace: Code: $template_hook[forumhome_wgo_pos5]</table><br /><!-- end what's going on box --> Edit can not be performed exactly as there is another line of code that has to remain. Easy way around is to just add in the template hook. Will do Blue Carbon tomorrow night ![]() |
|
#9
| |||
| |||
| Re: Upgrade Notice - vBulletin 3.7.2 Can you also confirm that there are no 'navbar' template edits required in Red Carbon? P.S. I notice that the 'drop down one line at start of edit box' editor problem does not exist in your new syle - does that mean it can be fixed in Red Carbon? |
|
#10
| ||||
| ||||
| Re: Upgrade Notice - vBulletin 3.7.2 There should be. This: Code: <if condition="$show['notifications']"> Code: <if condition="$show['notifications'] AND $show['popups']"> Quote:
Code: margin: 0px 0px 0px 0px; |
| Tags |
| announcement , manual edits , upgrading , vbulletin 3.7 |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Upgrade Notice - vBulletin 3.7.1 | MaestroX | Announcements | 14 | 11-06-2008 05:04 PM |
| Upgrade Notice - vBulletin Blog 1.0.5, vBulletin Project Tools 1.0.3 | MaestroX | Announcements | 2 | 15-05-2008 07:43 PM |
| Upgrade Notice - vBulletin 3.7.0 Gold, vBulletin 3.6.10 | MaestroX | Announcements | 9 | 12-05-2008 12:18 PM |
| Upgrade Notice - vBulletin 3.7.0 (RC1) | MaestroX | Announcements | 2 | 21-03-2008 01:55 AM |
| Upgrade Notice (vBulletin 3.6.8) | MaestroX | Announcements | 0 | 27-07-2007 12:20 PM |