Forum Replies Created
-
In reply to: Where do I control how the forum list looks like
You can change how your forum looks like by editing its CSS file.
In reply to: Profile edit URLYou mean to make it show on every page?
This is the code located in logged-in.php that’s being called:
<p id=”inloggen”>
- <?php printf(__(‘Fawaka, %1$s’), bb_get_profile_link(bb_get_current_user_info( ‘name’ )));?>
- <?php bb_admin_link( ‘before= ‘ );?>
- <?php bb_logout_link(); ?>
</p>
This is what I have in my header.php
<div id=”inloggen”>
<?php if ( !in_array( bb_get_location(), array( ‘login-page’, ‘register-page’ ) ) ) login_form(); ?>
<?php if ( bb_is_profile() ) ; ?>
</div>
However, if you are on the frontpage (/index.php) or any other page, apart from profile.php
you don’t see the “edit” link.
Got?
In reply to: Open forum on it's own pageI tried adding &view=all to the url, but it’s not helping or I’m doing it wrong.
In reply to: Open forum on it's own pageNo, I don’t want a lot of things on the frontpage of the website (/index.php), so that’s why I want a separate page for forum, but I don’t know how to show the complete forum in a separate page.
In reply to: Wrapping the text in the forum tableWhich area exactly is not “wrapping”, this can easily be solved via CSS.
In reply to: Split an existing topicWhat’s the status of this plugin?
Ok, waiting
In reply to: dutch translationI think Prutser should update his page. Language files are now being put in /my-languages/
You have to create that folder.
Also it’s a good idea to download Poedit and also download his .po file. Translated words as “moddereter” doesn’t sound so nice :$
And beside that, THANKS A LOT prutser, we love you man.
Invalid File. This error has been forwarded to MediaFire’s development team.
In reply to: ShoutboxIs there a plugin like this?
In reply to: Latest Comments?As crackpixels said, he meant to have a list of “latest replies for topics.”
I hope we won’t be needing a WP install to make this plugin work.
In reply to: Latest Comments?This would be a nice feature.
In reply to: Sometimes Less Is Just LessI really love bbPress, but still wished some features existed by default. I know it’s doable via plugins, but default features are more cool, you can always turn it off. I really dislike the fact that some of the solutions I have seen on this forum, are related to “integrate your forum with WordPress, and use this plugin and it will work”, no, I don’t like that. bbPress should be able to do stuff on its own, without WordPress.
I don’t want to install WordPress for the sake of making some things work. I have been a WordPress user for so many years already, but still I refuse to do that. I have managed to convert my forum, which was originally SMF into bbPress (SMF > phpBB > bbPress), that was a lot of work, but I’m really happy I did that.
bbPress is by default very EMPTY, very very very empty. I was not used to a forum, with so less features and options. My users didn’t like it. I managed to add a lot of features via plugins. Now my users are a bit happy, I’m also very happy.
The best part I love so far is, that making changes not always is so difficult compared to SMF or phpBB. phpBB is the last forum software on this planet I’d want to use, OMG so difficult to make changes. SMF is one of the best out there, but has some limits due to their copyright system.
Some things I’d really love to see happening anytime very soon:
1. A codex page, with detailed instruction about the codes, just like its big brother WordPress has, at least a start, so we, the webmasters, can do more cool stuff
2. More features by default, such as:
a. Private message
b. Avatar upload
c. Memberlist
d. Quote option in topics
e. Smilies
These are some very basic options.
I’m sure bbPress will be one of the most professional forum software out there one day, it’s not so far yet, but I see it happen.
That’s why I’m a proud user of this software.
In reply to: Sneak peek at bbPress.org 2.0I like the layout, but only wished, that bbpress would have some options by default.
In reply to: Smilies aka Emoticons Plugin (in English)?Also unccoment this line:
//bb_add_action(‘bb_head’, array(&$bbemoticons, ‘bb_grins_head’));
In reply to: Smilies aka Emoticons Plugin (in English)?Okay, after reading a lot of topics and fixing stuff, I got this to work. Will report bugs in time.
See these posts if you want to get it to work:
https://bbpress.org/forums/topic/emoticons-for-bbpress/page/3#post-21163
https://bbpress.org/forums/topic/emoticons-for-bbpress/page/3#post-21172
Also you need to change the header, or else you won’t see it in your plugins list. Change it into:
/*
Plugin Name: bbemoticons
Plugin URI: none
Description: Simple and plain smiley function for bbPress
Author: hiromasa
Version: 0.72
Author URI: hiromasa (http://hiromasa.zone.ne.jp/blog/)
*/
Also add this in the header, found it somewhere, I think it helps also.
<script type=”text/javascript” src=”‘. bb_get_option(‘uri’) .
‘my-plugins/bb-emoticons.php?bb_grins_output=javascript”></script>
In reply to: Smilies aka Emoticons Plugin (in English)?This is not working either on 1.0.1
In reply to: What plugins is bbpress.org runningI don’t believe this website is using any plugins.
I haven’t been here for a while. Will try it for sure and give feedback.
I think this:
<?php if( $topic->forum_id == 9 ) { ?>
Is not working actually
In reply to: User doesn't exist errorI have the same problem with my forum, when you try “recover password” it will mail you back your own password and it activates your account again, weird, I know.
In reply to: Ajax Quote (or “Quote Extended”):Yeah, I have uploaded it to my my-plugins folder. What exactly I should check, and where?
In reply to: User doesn't exist errorDid you try recover password?
In reply to: limit forums included in latest discussionsThis still works! I’m using 1.0.1
This is how my code looks like:
<?php if( $topic->forum_id != 29 ) { ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> “><?php topic_title(); ?><?php topic_page_links(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<!– <td class=”num”><?php bb_topic_voices(); ?></td> –>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr><?php }?>
Thanks
In reply to: Ajax Quote (or “Quote Extended”):Okay, I downloaded it, uploaded it, activated it.
However, when I click on the “quote” button, I don’t see the “quote” in the reply box, as it should. (or shouldn’t it? I don’t think it’s working.
Somehow it’s not fetching the content for me when I quote a reply.
Ideas?