MyBB Community Forums

Full Version: Quote button not working (2014)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am not sure if this code is old or something but when I click quote it leads me to the "Post A New Reply" page without the quote.

<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}"><img src="{$theme['imglangdir']}/postbit_quote.gif" alt="{$lang->postbit_quote}" title="{$lang->postbit_quote}" /></a>
The template matches fine. Are you using any plugins? If so, please list them.
(2014-07-29, 12:50 PM)dragonexpert Wrote: [ -> ]The template matches fine. Are you using any plugins? If so, please list them.

Honestly I am new to owning a forum so I am not 100% sure what that means but the only change I have done is changing the theme to this. http://mods.mybb.com/view/corporate-theme
Thanks for replying.

EDIT: So I actually did not add that to the postbit_quote... I added it and it works but now it leaves me with this.

[Image: 2804c1d7abf5b6a9.jpg]

Here is the code. The first one is the working quote but not working image while the second one is the quote image that does not work. Can anyone help me combine the code so that it works? Thanks!

<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}"><img src="{$theme['imglangdir']}/postbit_quote.gif" alt="{$lang->postbit_quote}" title="{$lang->postbit_quote}" /></a>

<a href="newreply.php?tid={$tid}&amp;pid={$post['pid']}" class="postbutton"  title="{$lang->postbit_quote}">Quote</a>


EDIT AGAIN! I am kind of surprised but I think I figured it out myself!

I changed from the first to the second.

<a href="newreply.php?tid={$tid}&amp;pid={$post['pid']}" class="postbutton"  title="{$lang->postbit_quote}">Quote</a>

<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}"class="postbutton" title="{$lang->postbit_quote}" >Quote</a>


Is this correct!? It seems to be working!