MyBB Community Forums

Full Version: Several Mod Requests
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'm going to convert a MyBB board into a Job Ad board (I call it MyAdBoard).

But, in order to do this, I need three mods made, and I would appreciate any help I could get.

1) Make a special way (not moderation), that a person can lock their topic and mark it as [SOLVED]. It would be in the options.

2) Make a 1.4.x version of the Subscription Mod!!! (High Priority). Basically, users would need to pay to get into a certain group.

3) This final mod, which is probably a simple PHP edit. I just need the variable for the Author name in the showthread to be seperated into <a href="linktoprofile">authorname</a>, so that way, I can extract and use the variable for the profile, since my Job Ad Board will require a profile iframe.

That's all that I can think of. I may even pay anyone who can get these to work.
1) I just submitted a plugin for that, it's awaiting validation. I will edit my post and link to it when it's approved.

2) Labrocca is working on that: http://community.mybboard.net/thread-364...#pid245336

3) Please explain again, I understand some parts of it, but together it's a big mess Confused
Sorry, basically, I just need a variable for the showthread template that shows the author's Member ID.
Oh, now I understand.
That's an easy one Toungue
To display the User ID of the thread starter, add this in your template:
{$thread['uid']}

So if you want to create a link to the thread starter's profile, you can put this code in your template:
<a href="http://www.mywebsite.com/forum/member.php?action=profile&uid={$thread['uid']}">Click here!</a>

Personally, if I would create a link, I would do this:
<a href="http://www.mywebsite.com/forum/member.php?action=profile&uid={$thread['uid']}" title="{$thread['username']}'s Profile">Visit {$thread['username']}'s Profile!</a>
That will link to the user's profile page, also, when users hover over the link it will display a tooltip (something like):
Quote:USERNAME's Profile
Quote:1) Make a special way (not moderation), that a person can lock their topic and mark it as [SOLVED]. It would be in the options.

I had something like this for 1.2x and I know lex worked on something similar. I will try to add this to my dev list for 1.4.

Quote:2) Make a 1.4.x version of the Subscription Mod!!! (High Priority). Basically, users would need to pay to get into a certain group.

Yes almost done. I am full force 1.4x plugin dev now.
(2008-08-28, 02:05 PM)Zash Wrote: [ -> ]1) Make a special way (not moderation), that a person can lock their topic and mark it as [SOLVED]. It would be in the options.

My plugin has been validated, here's the URL to the release thread: http://community.mybboard.net/thread-36876.html

So, I guess this thread is SOLVED Wink