MyBB Community Forums

Full Version: Accessing PM Folder Listing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to organize and reduce the clutter of the usercp navigation and I can't seem to find whatever allows me to edit the $folderlinks format. I looked up and down the template listing and even opened private.php. I found something that I thought was linked to the formatting of the folder listing:
$folderlinks .= "•&nbsp;<a href=\"private.php?fid=$folderinfo[0]\">$folderinfo[1]</a><br />\n";
I figured •* was the same as &bull;, but editing this returned no results.

Can someone point me in the right direction?

*EDIT: Ha, interesting. &\#149; seems to parse in this post (minus the slash).

EDIT 2: I posted this in the wrong forum. I'm terribly sorry. =/
Bump. It's been over 24 hours. I'm well-aware that this is in the wrong forum and I apologize. If someone could move it for me, I would appreciate it.
Hi Toasty,

Thanks for being patient. You should not change the $folderlinks in private.php as that is responsible for the folder dropdown menu, not the left navigation bar.

Instead, please take a look at inc/functions_user.php. Try editing this line:
$folderlinks .= "<li class=\"pmfolders\"><a href=\"private.php?fid=$folderinfo[0]\">$folderinfo[1]</a></li>\n";
Nice. It worked perfectly, man.

Thanks much for your support.