A few feature requests for the forums.
Posted: 24 January 2008 04:20 PM   [ Ignore ]  
Lab Assistant
Avatar
RankRank
Total Posts:  198
Joined  01-15-2008

- I would like to be able to choose to have certain custom profile fields displayed next to their name on the left, like their join date is.

- Subforums.

- Option to keep Fast Reply always open, It’s all I really use and the great part of using it in IPB is you don’t have to click anything accept POST!

- Numbered lists, bulleted lists, and strike through text.  I used these a lot in our old forums to show members what features we were working on and what was completed.

- Spoiler tags, a lot of sites use these to hide things that may spoil a movie/game for a person and are useful for other things as well.

 Signature 

Lone Shadow Gaming Community
LSGC Forums

Profile
 
 
Posted: 24 January 2008 04:55 PM   [ Ignore ]   [ # 1 ]  
Administrator
Avatar
RankRankRankRankRankRankRank
Total Posts:  19293
Joined  06-03-2002
ShadowXOR - 24 January 2008 04:20 PM

- Option to keep Fast Reply always open, It’s all I really use and the great part of using it in IPB is you don’t have to click anything accept POST!

- Numbered lists, bulleted lists, and strike through text.  I used these a lot in our old forums to show members what features we were working on and what was completed.

- Spoiler tags, a lot of sites use these to hide things that may spoil a movie/game for a person and are useful for other things as well.

These three are already possible.

1) In your theme file, simply get rid of the Fast Reply button and change this:

<div id="fastreply" style="display: none; padding:0;">

to this:

<div id="fastreply">

2) You can use any formatting plugin you like on your forums, including Markdown, Textile, or something custom that gives easy access to bulleted lists.  Strike is part of default typography with [strike][/strike] pMcode. example

3) Again, a formatting plugin could handle this.  This is really specific need, though, so you aren’t likely to find it in an existing formatting plugin.  It would be simple matter to write, though, and perhaps someone from the community would even be able to help you with that in the Plugin assistance forums.

 Signature 
Profile
MSG
 
 
Posted: 24 January 2008 05:05 PM   [ Ignore ]   [ # 2 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  198
Joined  01-15-2008

I’m assuming that I would need to make the Fast Reply changes individually, to every forum skin separately, correct?  I’m not sure how the Markdown & Textile plugins would work, are those on a per-skin basis, or once they’re installed they’re applied everywhere?  If I want to get rid of some of the forum skins I don’t like (so that I don’t have to bother modifying them) how would I get rid of one and all references to it?

As for the spoiler tags, I believe one of my friends will probably be able to take care of it.  Thanks for the help.

 Signature 

Lone Shadow Gaming Community
LSGC Forums

Profile
 
 
Posted: 24 January 2008 05:27 PM   [ Ignore ]   [ # 3 ]  
Administrator
Avatar
RankRankRankRankRankRankRank
Total Posts:  19293
Joined  06-03-2002

You don’t have to use all of the included themes, correct.  To remove the ones you don’t like, just delete them from /themes/forum_themes/.

Text formatting preferences are set at a forum level, and aren’t affected by your themes.  Install the plugins that you wish to use, and they will be available in the “Text Formatting in Posts” dropdown (click Edit for a forum, and then Show Preferences).  You can also set this in your default preferences so that new forums created will have that selected by default, but for existing forums, you will need to edit each ones’ preferences, as they are discrete.

 Signature 
Profile
MSG
 
 
Posted: 31 January 2008 10:36 PM   [ Ignore ]   [ # 4 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  198
Joined  01-15-2008
Derek Jones - 24 January 2008 04:55 PM

1) In your theme file, simply get rid of the Fast Reply button and change this:

<div id="fastreply" style="display: none; padding:0;">

to this:

<div id="fastreply">

OK, I’m finally getting around to this.  Where exactly do I change it?  Do I modify the code via FTP, via a template, or something else?  To a noob like me my theme file is kind of vague! smile

 Signature 

Lone Shadow Gaming Community
LSGC Forums

Profile
 
 
Posted: 01 February 2008 11:06 AM   [ Ignore ]   [ # 5 ]  
Administrator
Avatar
RankRankRankRankRankRankRank
Total Posts:  19293
Joined  06-03-2002

No problem, first follow these instructions.  You can either edit the files directly, or in the Forum control panel template editor if you setup the permissions as described in that document.  theme_submission.php is the file you are after (Threads Themes) and the Threads template you will find:

{if can_post}
<td align="right" style="width:140px;"><div class="button150"><div class="buttonLarge" id="fr" onclick="showfastreply();return false;" onmouseover="navHover(this);" onmouseout="navReset(this);">{lang:fast_reply}</div></div></td>
<
td align="right" style="width:140px;"><div class="buttonSpacer"><div class="button150"><div class="buttonLarge" id="pr2" onclick="navJump('{path:post_reply}')" onmouseover="navHover(this);" onmouseout="navReset(this);">{lang:post_reply}</div></div></div></td>
{/if}

Those are the buttons, and below that you will see:

{if can_post}
<div id="fastreply" style="display: none; padding:0;">
{include:fast_reply_form}
</div>
{/if}

That sets the form to not be displayed when the page is loaded.

 Signature 
Profile
MSG
 
 
Posted: 02 February 2008 05:28 PM   [ Ignore ]   [ # 6 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  198
Joined  01-15-2008

None of that exists in my theme_submission.php.  I search by “if can_post” and the only thing that came up was one “if can_post_poll”.

EDIT: It’s actually under theme_threads.php.  I found it and took care of all my skins, thanks!

One more question though, what do I need to edit to fix this problem…I know it’s dumb but:

http://vps.kg13.com/~shadow/images/blueskin.jpg

I think those numbers on the Blue skin are way too close together, what would I need to do to just insert a space or something between each one?  I think people could easily click the wrong one.

 Signature 

Lone Shadow Gaming Community
LSGC Forums

Profile
 
 
Posted: 04 February 2008 10:33 AM   [ Ignore ]   [ # 7 ]  
Administrator
Avatar
RankRankRankRankRankRankRank
Total Posts:  19293
Joined  06-03-2002

Yes, sorry about that, I had the right template, looking at the wrong file name.  Long week!

I think those numbers on the Blue skin are way too close together, what would I need to do to just insert a space or something between each one?  I think people could easily click the wrong one.

This would probably be best accomplished with a CSS change.  If you need assistance with that, I’d recommend posting in the HTML, CSS, and Design forum.

 Signature 
Profile
MSG
 
 
Posted: 29 April 2008 03:09 PM   [ Ignore ]   [ # 8 ]  
Grad Student
Avatar
Rank
Total Posts:  43
Joined  03-22-2007

Did your friend ever help out with the spoiler tag plugin? Some of my members requested this feature every couple of months when my forums used to be phpBB and it was easier to fix. Now using the EEforums it seems to be a biggie again.

 Signature 

-=end trans=-

Profile
 
 
Posted: 04 July 2009 04:15 AM   [ Ignore ]   [ # 9 ]  
Sr. Research Associate
Avatar
RankRankRankRankRank
Total Posts:  2651
Joined  06-01-2007

+1 for Subforums!

 Signature 

Main project: EE Commercial 1.6.8 Build 20091201, EE MSM 1.1 Build: 20091201 and EE Forum Module 2.1.2 Build 20091202.
Public Beta project: EE Commercial 2.0.1 PB Build:  20100215 | MSM Version: 2.0 - Build:  20100215

Profile
 
 
   
 
 
Post Marker Legend
New Topic New posts Hot Topic Hot Topic with new posts New Poll New Poll Moved Topic Moved Topic Sticky Topic Sticky topic
Old Topic No new posts Hot Old Topic Hot Topic with no new posts Old Poll Old Poll Closed Topic Closed Topic Announcement Announcements
Theme
Change Theme
Visitor Statistics
The most visitors ever was 1743, on December 02, 2009 03:47 PM
Total Registered Members: 120562 Total Logged-in Users: 52
Total Topics: 126613 Total Anonymous Users: 33
Total Replies: 665591 Total Guests: 330
Total Posts: 792204    
Members ( View Memberlist )