Want to fix those "no reply button" issues when you get a pager pop-up?
I was confused for a while why I could not reply but only close a pop-up well here is a quick fix.
Step 1. In Styles & Templates > Style Manager > Edit Templates > vBPager Templates > pager_newpager
Find This Code:
HTML Code:
<if condition="!$pagerinfo[canreply]">
<form method="GET">
<center>
<input type="button" class="button" onclick="Close_Pager('action=pager&do=pagerreply&rid=$pagerinfo[receiptid]&touid=$pagerinfo[fromuserid]');closepager('PLAYER');" value="$vbphrase[pager_close]">
</center>
</form>
</if>
<if condition="$pagerinfo[canreply]">
<form method="GET" action="$vboptions[vbpager_forum_dir_name]pager.php" name="frmpager" onsubmit="return SubmitForm(this, this.rid.value);">
<input type="hidden" name="rid" value="$pagerinfo[receiptid]">
<input type="hidden" name="touid" value="$pagerinfo[fromuserid]">
<fieldset class="fieldset">
<legend>$vbphrase[pager_reply_message]</legend>
<if condition="$pagererror">
<div class="page" style="border:thin inset; padding:$stylevar[cellpadding]px;<if condition="!is_browser('konqueror')"> height:50px; overflow:auto</if>">
<if condition="$pagererror[pagercanuse]"><font class="highlight">$vbphrase[pager_error] </font>$vbphrase[pager_no_usergroup_permissions]<br /></if>
<if condition="$pagererror[banuser]"><font class="highlight">$vbphrase[pager_error] </font>$vbphrase[pager_no_usergroup_permissions]<br /></if>
<if condition="$pagererror[pagermaxperday]"><font class="highlight">$vbphrase[pager_error] </font><phrase 1="$pagerinfo[pagermaxperday]" 2="0">$vbphrase[pager_sent_x_left_y]</phrase><br /></if>
<if condition="$pagererror[pagerquota]"><font class="highlight">$vbphrase[pager_error] </font>
<phrase 1="$vboptions[bburl]">$vbphrase[pager_message_qouta_reached]</phrase><br /></if>
Replace With:
HTML Code:
<if condition="$pagerinfo[canreply]">
<form method="GET">
<center>
<input type="button" class="button" onclick="Close_Pager('action=pager&do=pagerreply&rid=$pagerinfo[receiptid]&touid=$pagerinfo[fromuserid]');closepager('PLAYER');" value="$vbphrase[pager_close]">
</center>
</form>
</if>
<if condition="!$pagerinfo[canreply]">
<form method="GET" action="$vboptions[vbpager_forum_dir_name]pager.php" name="frmpager" onsubmit="return SubmitForm(this, this.rid.value);">
<input type="hidden" name="rid" value="$pagerinfo[receiptid]">
<input type="hidden" name="touid" value="$pagerinfo[fromuserid]">
<fieldset class="fieldset">
<legend>$vbphrase[pager_reply_message]</legend>
<if condition="$pagererror">
<div class="page" style="border:thin inset; padding:$stylevar[cellpadding]px;<if condition="!is_browser('konqueror')"> height:50px; overflow:auto</if>">
<if condition="$pagererror[pagercanuse]"><font class="highlight">$vbphrase[pager_error] </font>$vbphrase[pager_no_usergroup_permissions]<br /></if>
<if condition="$pagererror[banuser]"><font class="highlight">$vbphrase[pager_error] </font>$vbphrase[pager_no_usergroup_permissions]<br /></if>
<if condition="$pagererror[pagermaxperday]"><font class="highlight">$vbphrase[pager_error] </font><phrase 1="$pagerinfo[pagermaxperday]" 2="0">$vbphrase[pager_sent_x_left_y]</phrase><br /></if>
<if condition="$pagererror[pagerquota]"><font class="highlight">$vbphrase[pager_error] </font>
<phrase 1="$vboptions[bburl]">$vbphrase[pager_message_qouta_reached]</phrase><br /></if>
That fixed my issues, if it doesn't fix yours let me know and maybe I can help but remember I am no PHP coder, just another newbie like the rest. :banana: