Sat Sep 15, 2012 8:46 am
[b]Ghi chú:
phpBB2 cũng có jumpbox nhưng nó chỉ hiện trong viewtopic, hướng dẫn này
sẽ giúp bạn chuyển nó xuống overall_footer và sẽ hiện tất cả các trang.
Demo: [/b][You must be registered and logged in to see this link.]
[b]Hướng dẫn: Templates - Viewtopic_body
Tìm đoạn code này:
[/b]
...và thay bằng:
Bây giờ muốn mang nó đi đâu thì chỉ cần dùng code sau và đặt ở vị trí cần hiển thị trong overall_footer:
phpBB2 cũng có jumpbox nhưng nó chỉ hiện trong viewtopic, hướng dẫn này
sẽ giúp bạn chuyển nó xuống overall_footer và sẽ hiện tất cả các trang.
Demo: [/b][You must be registered and logged in to see this link.]
[b]Hướng dẫn: Templates - Viewtopic_body
Tìm đoạn code này:
[/b]
- Code:
[b][b]<form action="{S_JUMPBOX_ACTION}" method="get" name="jumpbox" onsubmit="if(document.jumpbox.f.value == -1){return false;}">
<table class="noprint" width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td align="left" valign="middle" nowrap="nowrap" {WIDTH_GALLERY}>
<span class="nav">
<!-- BEGIN switch_user_authpost -->
<a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}Newtopic" alt="{L_POST_NEW_TOPIC}" align="middle" border="0" /></a>
<!-- END switch_user_authpost -->
<!-- BEGIN switch_user_authreply -->
<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" alt="{L_POST_REPLY_TOPIC}" align="middle" border="0" /></a>
<!-- END switch_user_authreply -->
</span>
</td>
<!-- BEGIN viewtopic_bottom -->
<td align="right" nowrap="nowrap"><span class="gensmall">{L_JUMP_TO}: {S_JUMPBOX_SELECT} <input class="liteoption" type="submit" value="{L_GO}" /></span></td>
<!-- END viewtopic_bottom -->
<!-- BEGIN moderation_panel -->
<td align="center">
<span class="gensmall">{moderation_panel.U_YOUR_PERSONAL_MODERATE}</span>
</td>
<td align="center" width="250">
<span class="gensmall"> </span>
</td>
<!-- END moderation_panel -->
</tr>
</table>
</form>[/b][/b]
...và thay bằng:
- Code:
[b][b]<table class="noprint" width="100%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td align="left" valign="middle" nowrap="nowrap" {WIDTH_GALLERY}>
<span class="nav">
<!-- BEGIN switch_user_authpost -->
<a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" id="{POST_IMG_ID}Newtopic" alt="{L_POST_NEW_TOPIC}" align="middle" border="0" /></a>
<!-- END switch_user_authpost -->
<!-- BEGIN switch_user_authreply -->
<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" alt="{L_POST_REPLY_TOPIC}" align="middle" border="0" /></a>
<!-- END switch_user_authreply -->
</span>
</td>
<!-- BEGIN viewtopic_bottom -->
<td align="right" nowrap="nowrap">
<form id="jumpboxFMvi" action="{S_JUMPBOX_ACTION}" method="get" name="jumpbox" onsubmit="if(document.jumpbox.f.value == -1){return false;}">
<span class="gensmall">
{S_JUMPBOX_SELECT}
<input class="liteoption" type="submit" value="{L_GO}" />
</span>
</form>
</td>
<!-- END viewtopic_bottom -->
<!-- BEGIN moderation_panel -->
<td align="center">
<span class="gensmall">
{moderation_panel.U_YOUR_PERSONAL_MODERATE}
</span>
</td>
<td align="center" width="250">
<span class="gensmall">
</span>
</td>
<!-- END moderation_panel -->
</tr>
</table>[/b][/b]
Bây giờ muốn mang nó đi đâu thì chỉ cần dùng code sau và đặt ở vị trí cần hiển thị trong overall_footer:
- Code:
[b][b]<div id="fmviJumbox">
Loading...
</div>
<script type="text/javascript">
$("#fmviJumbox").load("/t1-FMvi form#jumpboxFMvi");
</script>[/b][/b]