MyBB Community Forums

Full Version: Problem with Adfly and MyShoutbox.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

I have an issue with the Adfly full page script (which converts all links on the page to adfly links) and the MyShoutbox plugin. I've added my domain (with and without www.) to the exclusion list, however the links under 'Options' (Smilies and Popup Shoutbox) are basically converted to "empty" links (adf.ly/blabla -> "The link does not exist").

Do you guys have any ideas?
You can edit the links in templates. For example in mysb_shoutbox global template change:
<a href="index.php?action=full_shoutbox">{$lang->mysb_fullsbox}</a>
to:
<a href="{$mybb->settings['bburl']}/index.php?action=full_shoutbox">{$lang->mysb_fullsbox}</a>

So basically add {$mybb->settings['bburl']}/ at the beggining of required URLs.