Search Results for 'bbpress'
-
Search Results
-
This is something else I don’t understand. Who uses numbers to manually order stuff? Is this a joke? This is something I would expect from 2 decades ago. This is WordPress / bbPress, why is drag and drop re-ordering not supported outta the box?
How do I go about re-ordering my forums via dragging and dropping rather than manually renumbering every forum?
Ive searched online and couldn’t find a post on how to do it.
I don’t know what the designers were thinking when they designed bbPress, but it looks like crap, not the theme, just the way the stock design is where the forums are just all bundled up underneath the category.
Look at the forums for example:
https://linustechtips.com/main/
http://www.hardwarecanucks.com/forum/
The categories are nicely separated in a hierarchy, with the posts and replies being shown to the right.
I need my forums to look like this, cause I’d like to avoid using crap paid software or open software like phpBB, vBulletin, IP Board, etc.
I want bbPress to look like this:
https://linustechtips.com/main/
See how the categories are above and separated from the rest?
My current forums look like this –> http://www.skyforgelabs.com/?post_type=forum , and I HATE that, the way the forums are under the category with the stupid 0’s is ugly and I don’t know why bbPress is like this by default.
Topic: Upgrading WordPress
I run 3.7 right now. I was afraid to upgrade WP in case there wee issues with bbPress. So … if I update to 3.81 (the latest) can I expect issues or should it go smoothly?
I hired someone o set up my site with WP and bbPress. He hasn’t worked on the site after that so if I run into issues, I’m stuck. I’m only online two hours a day and can no longer code or fix errors (due to illness).
I’m leery about upgrading but know I have to do it.
Topic: nested replies
I’m using the Genesis framework and bbpress does not seem to disable nested replies.
I’m customizing my bbpress a bit.
How do I generate new replies. I have to display some Login credentials as a 2nd reply – everytime a new topic is created. I couldn’t find anything about generating replies from code via Google or via searching on these forums.Thank you.
Topic: Help with error
Hi folks,
Is there anyone who can help me to find out why bbpress don’t scroll automatically down to the ”error”-section when you press the ”submit”- button on the bottom of my page without filling in the fields: http://www.dicud.com/forums/topic/keep-up-the-motivation/?This is the error-section and its red.
ERROR: Invalid author name submitted!
ERROR: Invalid email address submitted!
ERROR: Your reply cannot be empty.
ERROR: Slow down; you move too fast.
Topic: Forum Freshness
I’m sure this is a tricky area of bbpress to make work.
My perception is that it is glitchy. I converted over a year ago from posts to topics and have the most recent of bbpress installed.
Here’s an example of a forum in which the freshness is persistently wrong — I’ve used the repair tools for parents and last activity repeatedly.
Check this link — there is activity in subforums (recent topics and recent posts), but the parent forum is showing a hard-to-explain freshness of one month ago.
http://willbrownsberger.com/forums/forum/priorities/protecting-people/
I am currently using bbPress 2.5.3 with WordPress 3.8 and the default bbPress theme, as inside the plugin folder. I am wondering how I change the tags prefix (“Tagged:”) on the topic page. I have looked through the theme files and can’t find it in any of them. Can anyone assist me? It’s really annoying me right now.
Thanks
Hi folks,
Is there anyone who can help me to find out why bbpress don’t scroll automatically down to the ”error”-section when you press the ”submit”- button on the bottom of my page without filling in the fields: http://www.dicud.com/forums/topic/keep-up-the-motivation/?This is the error-section and its red.
ERROR: Invalid author name submitted!
ERROR: Invalid email address submitted!
ERROR: Your reply cannot be empty.
ERROR: Slow down; you move too fast.
Topic: Private Messaging?
Topic: Threaded, hierarchal display
I am considering a move to bbpress but am very concerned about keeping the general functionality of my current forum at http://surveyorconnect.com. It uses a threaded, hierarchal tree-style forum software and my users love it. A little backstory: an industry magazine used to have a similar forum, then switched to a newer format and nobody liked it — so I started a new forum using MyLittleForum (http://mylittleforum.net) and told a few surveyors about it and in short order, it was very busy and respected in the surveying community. Many of the users are “old school” and so they like this format. But I also want to attract a younger crowd, who I assume would prefer a more modern format.
What I’m really hoping for here is that bbpress would allow me to provide BOTH formats on a user-by-user basis, so they can select which format they’d prefer. Also, one of the features they like about the current site is the little bubble next to the date in the topics list that gives a preview of the latest post within that topic. If we lose that feature, I won’t be heart-broken, but it would be nice to have something like that in bbpress, if possible.
There is so much I could do with my forum that MLF won’t allow me to do. Probably the biggest thing is the social aspects — allowing people to “like” and share posts, etc.
I’d love your thoughts, opinions and references to anything that might help me make the decision to move to bbpress. Thanks!
Hello,
Clicking a username from within the BBPress section generates a 404 error.
I’ve done extensive research on this problem, and haven’t been able to find a fix in the forums so far.
I’ve deactivated all plugins besides BBPress – no dice.
I’ve switched the default theme and still get the 404.
I’ve changed the permalinks and the subscriber role – didn’t make a difference.Some code fixes I’ve found in the forums just make it so that the 404 page doesn’t generate, but it shows a blank page, which isn’t really the point. I need it to actually go the member profile.
I believe all of the software is up to date:
Wordpress v3.8
BBPress v2.5.3
Theme is Dante, v 1.5.1Here is a user link: essential-essentials.com/forums/user/Essential-Essentials/
(The site is still very much in development)
Thank you for any help you can provide : )
I’ve look at it a few times in the WordPress Codex and it probably explains GREATLY how it works and what it does but maybe I just don’t get it.
I understand the concept of taking a function that exists <—> edit it <—> return it to WP Core but how!
Lets say I just simply want to replace the text inside a HTML “… class=”bbp-topic-spam-link”> ” of the spam link.
First step I do is search for the function: bbp_topic_spam_link()
Second step found it inside plugins/bbpress/includes/topics/template.php [ line 2832 ]
Third step copy the entire function to my functions.php file or plugins functions file.
Fourth step, edit the code that you want to edit but after that, how do you add the filter to this function to make it a new or your function.
/** * Output the spam link of the topic * @uses bbp_get_topic_spam_link() Topic spam link */ function bbp_topic_spam_link( $args = '' ) { echo bbp_get_topic_spam_link( $args ); } /** * Return the spam link of the topic */ function bbp_get_topic_spam_link( $args = '' ) { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'id' => 0, 'link_before' => '', 'link_after' => '', 'sep' => ' | ', 'spam_text' => esc_html__( 'Spam', 'bbpress' ), 'unspam_text' => esc_html__( 'Unspam', 'bbpress' ) ), 'get_topic_spam_link' ); $topic = bbp_get_topic( bbp_get_topic_id( (int) $r['id'] ) ); if ( empty( $topic ) || !current_user_can( 'moderate', $topic->ID ) ) return; $display = bbp_is_topic_spam( $topic->ID ) ? $r['unspam_text'] : $r['spam_text']; $uri = add_query_arg( array( 'action' => 'bbp_toggle_topic_spam', 'topic_id' => $topic->ID ) ); $uri = wp_nonce_url( $uri, 'spam-topic_' . $topic->ID ); $retval = $r['link_before'] . '<a href="' . esc_url( $uri ) . '" class="bbp-topic-spam-link">' . $display . '</a>' . $r['link_after']; return apply_filters( 'bbp_get_topic_spam_link', $retval, $r ); }Thanks.
