MyBB Community Forums

Full Version: CraKteR/Smethead - Conflicting Mods
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I activate Classic Reputation System 1.0, it makes the images from the Usergroup Additional Images 1.0.2 disappear. Any ideas on what might be causing this? Thanks.
Was Additional Usergroup Images updated to 1.2?

Hmm...

* Ryan Ashbrook looks

Ahh, so it was. Toungue

I don't understand why it would conflict because I have about 3 plugins messing with the showthread on my localhost and it works fine. =/

One of them is the Warning System.
Ryan Ashbrook Wrote:Was Additional Usergroup Images updated to 1.2?

Hmm...

* Ryan Ashbrook looks

Ahh, so it was. Toungue

I don't understand why it would conflict because I have about 3 plugins messing with the showthread on my localhost and it works fine. =/

One of them is the Warning System.

LOL

It's the damnedest thing. Both plugins work fine seperately. And there are no php errors when they are both activated. The addtional group images just disappear like they never existed.
I'll have a go at it tomorrow.
CraKteR Wrote:I'll have a go at it tomorrow.

Thanks. I appreciate it.

While you're at it, what changes do I need to make to the code to get the images to appear side by side instead of one on top of another?
Inside inc/plugins/crs.php try changing:
$plugins->add_hook("postbit", "crs_postbit");
to:
$plugins->add_hook("postbit", "crs_postbit", 1000000);

And sorry for the late response, I forgot about it.
CraKteR Wrote:Inside inc/plugins/crs.php try changing:
$plugins->add_hook("postbit", "crs_postbit");
to:
$plugins->add_hook("postbit", "crs_postbit", 1000000);

And sorry for the late response, I forgot about it.
explain...
anyway, I'll add it to new release Wink
the last parameter is the order of which should run first, mine has to be run after your plug-in.