MyBB Community Forums

Full Version: Prefix Manager plugin issues.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I'm using the prefix thread plugin and it's not showing up on my latest theme. It was working on my old theme, but not the new one. When I disable the plugin, then enable it, nothing. I do have the prefixes set within the adminCP.

Is there a specific location where I need to modify code to make this appear in the new theme? Where would that location be, and what would I add?

Thanks
Do the changes manually:
       $find = preg_quote("{\$gotounread}");
        $replace = "{\$gotounread}{\$thread['prefix']}";
        prefix_replace_templatesets("forumdisplay_thread", $find, $replace);

        $find = preg_quote("trow2\"><input");
        $replace = "trow2\">{\$prefix_menu}<input";
        prefix_replace_templatesets("newthread", $find, $replace);
        prefix_replace_templatesets("editpost", $find, $replace);