Skip to:
Content
Pages
Categories
Search
Top
Bottom

Pagination Broken beyond page 2 for shortcode [bbp-topic-index]

Published on August 23rd, 2017 by Matt Pritchett

Trying to diagnose a site why the pagination for the shortcode

Viewing 25 topics - 13,376 through 13,400 (of 27,127 total)
works only to page 2. Once you get to page 3+ (of 1200+ pages) it 404s. It only goes to page 2 regardless of what the per page setting is for topics. This is running PHP7.0.x, WP 4.8.1 and I’ve confirmed the issue on 2.5.12 and 2.6 RC3. Going back to 2.5.11 gives me the ksort expects param 1 to be an array error as do all other 2.5.x series. I have tested with all plugins deactivated except bbPress and tried all the usual default themes. Any thoughts?

How to make Post layout look like it does on bbpress.org

Published on August 23rd, 2017 by TechHaus

Hi,

Installing/customizing bbpress today, and I would love to make it look like it does here.

A post at the top with its own appearance showing that it is the main post.

Then:

Viewing 5 replies – 1 through 5 (of 5 total)

And then the replies which are obvious replies.

I’m sure this has been covered on here (or other places) before, I just don’t know exactly what to search.

Thank you for any help / ideas.

Bobby

PLUGIN REQUEST: Form on post to new thread

Published on August 23rd, 2017 by InTempest

Archived old site: imapiece .com/connect1/
New wordpress site curently being developed: imapiece .com/
WP version: 4.8.1
BBPress Version: 2.5.13
(I broke the links and removed the https:// because the previous posts I made where all the links worked were never approved by mods and stayed in limbo, just take out the space before .com and they’ll work)

I am moving my current guild forums from PHPbb to buddypress/bbpress in wordpress.
There is one thing I can’t seem to find, and ive been looking around everywhere and it seems im not the only one looking.
bbpress .org/forums/topic/looking-for-an-application-plugin

Here is what im looking for, user registers and then applys for a specific group by going to a page with the php form and on submission the post is made in a specified forum.

So lets say there is a page with links to the groups pages and on each page is a application to join that group because the cosplayers have different questions than car guys or wow players. User fills out the app and when they submit it creates a new thread in that groups recruitment forum.

Here is the addon that I use with phpbb
phpbb .com/customise/db/extension/application_form

Here are some screenshots of it in its current use

Front end application
Front end view

Then it creates a new post with New Application from %username
Creating new post

Then in the output view it has it in its own post
guild view of applicant

Has anyone seen ANYTHING from bbpress or buddy press that can do this? I have been looking and as mentioned I can’t find a solution anywhere. Closest I found was an option in gravity forms to send to trello or via email but that doesn’t make a new thread in a pre determined forum where community members can access and respond to it. I’m bootstrapping this myself if anyone knows a place that contracts this stuff out. I don’t have a lot of money, but the guild is dying and i dont know what else I can do.

Thank you for any information you may have available,
InTempest

Remove specific buttons from TinyMCE

Published on August 22nd, 2017 by Divvy

I’m using this guide to show TinyMCE in my bbpress forum:
https://codex.bbpress.org/enable-visual-editor/

function bbp_enable_visual_editor( $args = array() ) {
    $args['tinymce'] = true;
    $args['teeny'] = false;
    return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

Is it possible to remove or hide some buttons in Visual tab?

I want to hide those:

Can someone help me?

Thanks 🙂

How to disable access of Forum page

Published on August 22nd, 2017 by Julian45123

Hi,
I want my users can’t access to Forum page. Is it possible?
Thanks.

Forum Search is not displaying result properly

Published on August 22nd, 2017 by umairshahid123

Hi
When I enter any keyword in search bar I get the result in the form of breadcrumbs

Home › Forums › Search › Search Results for ‘food’ Viewing 4 results – 1 through 4 (of 4 total) Author Search Results May 8, 2017 at 2:31 pm #12784 Topic: What to grow for highest nutritional density per square foot? in forum … [Read more…]

Please check the below screenshot
http://prntscr.com/gbldll

BBpress in twenty sixteen theme

Published on August 21st, 2017 by grainosalt

Hello,
I’m not sure which version of wordpress and bbpress I’m using but I just downloaded it so I would assume it’s the most recent version.
I’m trying to build a wordpress site which acts purely as a forum. I am using the twenty sixteen theme, I loaded bbpress and I got the opening setup but I can’t add an option to register or retrieve lost password. I tried adding it to the widget as well as using wordpress tweaks, none of it worked. In addition, for some reason, the login suddenly switched to text, [bbpress login], instead of showing the login box which used to be there. My site is forum.campexpo365.com. Thank you

How to assign the same taxonomy to topics as the parent forum?

Published on August 21st, 2017 by themichaelglenn

I’m looking for a way to automatically assign a forum’s custom taxonomy to all of that forum’s topics.

I recently registered a custom taxonomy that I want to share across all pages, posts, forums and topics, and since I create most of the content on my site, assigning the right taxonomy to pages, posts, and forums is easy. But I’d rather not have to manually assign taxonomy to topics, especially since any of my members can create a new topic at any time.

Is there a way to tell WP to get the taxonomy for the parent forum, and automatically save all topics in that forum with the exact same taxonomy?

(If it helps, this is the code I used to register a custom taxonomy to be used on all pages, posts, forums and topics):

// Add custom taxonomy
function postcats_init() {
	// create a new taxonomy
	register_taxonomy(
		'game-categories',
		array('post','page','forum','topic'),
		array(
			'label' => __( 'Games' ),
			'rewrite' => array( 'slug' => 'game-posts' ),
    'hierarchical'      => true,
    'capabilities' => array(
				'assign_terms' => 'edit_pages',
				'edit_terms' => 'manage_categories',
    		'assign_terms' => 'edit_pages'
			)
		)
	);
}

add_action( 'init', 'postcats_init' );

“Forums” Results in blank page.

Published on August 21st, 2017 by daltmc

When in my dashboard and attempting to view “All forums” I get the result below.

Blank Page

This also goes for any created forums I try to visit.

Blank Page

I have tried creating a page on the site titled http://bloodandtearsbb2ps4.com/forums/ and it just results in a blank page no matter the content I add.

I can get topics to work both with and without parent forums so I’m not sure why I’m having issues with the “forums” pages.

Image upload plugin is missing the ‘dimensions’ option

Published on August 21st, 2017 by lupacexi

Hi there,

I am currently using the below versions of WordPress and BBPress:
BBPress version 2.5.12
Image Upload for BBPress Plugin version 1.1.14
WP version 4.8

My website is myfertilityfocus.com (the forum is for members only).

When I originally installed the ‘Image Upload for BBPress’ plugin, there was an option for setting the dimensions of the image that was being uploaded to a post. Now this seems to have disappeared. If a member wants to post an image, there is no way for them to set the dimensions. Do you know what has happened here? Images are ending up way too big on members’ posts!

Skip to toolbar