MyBB Community Forums

Full Version: MultiQuote not working correctly.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I am using a theme by Envira, and I can't seem to get the multiquote to work, I don't understand why it won't work at all.

site: loot.sx
Go to your ACP > Templates and Styles > Templates > square > Open postbit templates, and search postbit_multiquote.
Replace all with:

<a href="jThread.multiQuote({$post['pid']});" style="display: none;" id="multiquote_link_{$post['pid']}"><img src="{$theme['imglangdir']}/postbit_multiquote.gif" alt="{$lang->postbit_multiquote}" title="{$lang->postbit_multiquote}" id="multiquote_{$post['pid']}" /></a>
<script type="text/javascript">
//<!--
$('multiquote_link_{$post['pid']}').style.display = '';
// -->
</script>
Oh my bad, forgot to mention that the theme is using CSS3 buttons instead of images
here is the current code
<a href="javascript:Thread.multiQuote({$post['pid']});" class="buttons" style="display: none;" alt="{$lang->postbit_multiquote}" title="{$lang->postbit_multiquote}" id="multiquote_link_{$post['pid']}"><i class="icon-quote-right" style="font-size: 13px;"></i> Quote</a>
<script type="text/javascript">
//<!--
	$('multiquote_link_{$post['pid']}').style.display = '';
// -->
</script>
Also, the theme is flat desire.

bump?
Why not contact Envira?
You need to add an image for this to work.

This is the default code for multiquote button, use this at the moment and ask support to envira to obtain the button with the desired style of the theme.

<a href="javascript:Thread.multiQuote({$post['pid']});" style="display: none;" id="multiquote_link_{$post['pid']}"><img src="{$theme['imglangdir']}/postbit_multiquote.gif" alt="{$lang->postbit_multiquote}" title="{$lang->postbit_multiquote}" id="multiquote_{$post['pid']}" /></a>
<script type="text/javascript">
//<!--
	$('multiquote_link_{$post['pid']}').style.display = '';
// -->
</script>

Greetings.