Skip to:
Content
Pages
Categories
Search
Top
Bottom

Can’t edit the appearance of the forums / users / username page

Published on July 27th, 2021 by francorbalan

I am working on a site through Elementor Pro (A website builder) and through it I create templates. The templates are then applied to the pages that I designate.

I installed BBPress and assigned a template to the forums page. However, it does not apply to the users page. In this case the problem is that the main menu is almost invisible.
Example of a user page: https://mariablaquier.com/forums/usuarios/lagorda/

Does anyone know how I can fix this?

WordPress: 5.8
BBPress: 2.6.6
Site: mariablaquier.com

Updatable Post Date

Published on July 27th, 2021 by alave

Hi,
I am looking for a solution to have my topic author post date to be updated whenever the topic/post content is edited – but cannot work out a way to do this effectively.

I have attempted to manually change post date as suggested at https://bbpress.org/forums/topic/changing-post-dates/ but it does not seem to work.

Any solution or ideas?

The reason is I have topics that were created 2-3 years ago that I regularly update depending on new information/changes to the topic subject. I don’t want to lose any comments associated with the topic and its completely inefficient to be deleting each topic and recreating them periodically.

Thank you!

Nothing visible on Site

Published on July 26th, 2021 by mjaitly123

Hi,

I am very new to Buddy Press. The registration page is working okay and when I log in, I am able to see profile, messages, edit profile, log out. etc. I am also able to post an activity (as an admin, I I even approved it). However, groups, members and activities do not appear on the site at all. As an admin, I created a group but that is not visible despite the privacy setting set to Public. Can anyone please help me? Another thing I want to add is that the checkbox for ‘discouraging index of the site on search engines is unchecked because I want the site to be indexed by search engines.

My site is zootappa.com though there is no content here, I was expecting to see the group and some activity in the respective tabs.

Thanks

Getting lots of Spam registration through bbpress login

Published on July 26th, 2021 by ritishsharma

I’m using bbPress for quite a while now.

But for the last 3 weeks, I’m getting lots of spam & suspicious registration on my website using bbPress login, like mailforspam.com and others.

The strange part is that they are not even visiting my bbPress login page and other forum topics, there is no data of them in google analytics. They directly get registered somehow.
They just not only registered but also create some spammy topics. Can you tell me why I’m suddenly run into this problem?

And, What can I do to stop them?

Add emoticons

Published on July 25th, 2021 by Ricsca2

I migrated a forum from vbulletin but now the customized smileys do not appear but I only see their code such as the writing: cgrd: or: by2:, how can I connect their codes to the smileys that I upload in ftp?

Thank

Help footer display as text

Published on July 25th, 2021 by o2disegno

The footer of the page was broken when I enter any page of the forum but the rest of the page works perfectly, only when I enter the pages of the forum it broke. I use wpbakery to build the page.

The only page of the forum that works well is the one that I created by placing the shortcode: https://dermomen.com/foros-dermomen/ the rest of the pages break the footer and show it in text.

Image of the problem:
Captura-de-pantalla-2021-07-25-213806

Preguntas de los novatos

I hope you can help me. Thanks.

PHP Warning bbPress Toolbox

Published on July 25th, 2021 by Robert

Received following PHP Error
Warning: Invalid argument supplied for foreach() in /wp-content/plugins/gd-bbpress-toolbox/forms/dashboard/users.php

Could you please advise?

Thank you.
Robert

Customize Groups URL

Published on July 24th, 2021 by techinbermudas

hi guys,

So i wonder how do i customize the group urls like we can on the forum.

in this

from this:
https://www.techinbermudas.com/dev/oneplus-8t/forum/topic/gcam-recommended-mod-15/

to:
https://www.techinbermudas.com/dev/oneplus-8t/t/gcam-recommended-mod-15/

where t = topic
and forum slug is removed.

and where dev = groups
i’ve changed that already

i’m aware of the Settings > Forums Single Slugs but they ain’t for Groups.

Thanks in advance 😉

Is there a theme that gives 2 columns of replies

Published on July 24th, 2021 by tw4040

Is there any theme or way to use WordPress to make a forum that has two columns of independent replies? I refer to something that looks like this:

https://www.debate.org/opinions/should-18-and-19-year-olds-be-exempted-from-the-death-penalty

Using BBpress, etc. by default only gives you one single column of replies.

bbPress User Roles Not Working

Published on July 23rd, 2021 by lolataylor1

WordPress 5.8
bbPress 2.6.6
BuddyPress 9.0.0
Astra Theme 3.6.5

Help! I have read every forum post about creating new custom roles in bbPress, but it still isn’t working for me. The created role names are displaying on my Users page in my Admin dashboard, but the roles themselves are not working as intended. When I assign a user a forum role, it is adding it under the “Roles” [i.e., Subscriber (WP Role), Founder (bbPress Role)] and not “Forum Roles.” I tested the different user role settings and they, too, are not working.

Am I missing something or doing something wrong? I’m new to bbPress and very frustrated after spending hours trying to get this to work.

This is the code I have create and placed in my Code Snippet plugin. The forum is being added to a paid members only website, so the URL would not be useful.


function authorready_add_new_roles( $bbp_roles ) {
$bbp_roles['bbp_probation'] = array(
'name' => 'Probation',
'capabilities' => custom_capabilities( 'bbp_probation' )
);

$bbp_roles['bbp_subscriber'] = array(
'name' => 'Subscriber',
'capabilities' => custom_capabilities( 'bbp_subscriber' )
);

$bbp_roles['bbp_founder'] = array(
'name' => 'Founder',
'capabilities' => custom_capabilities( 'bbp_founder' )
);

$bbp_roles['bbp_leader'] = array(
'name' => 'Group Leader',
'capabilities' => custom_capabilities( 'bbp_leader' )
);

$bbp_roles['bbp_moderator'] = array(
'name' => 'Moderator',
'capabilities' => custom_capabilities( 'bbp_moderator' )
);

$bbp_roles['bbp_administrator'] = array(
'name' => 'Administrator',
'capabilities' => custom_capabilities( 'bbp_administrator' )
);

return $bbp_roles;
}

add_filter( 'bbp_get_dynamic_roles', 'authorready_add_new_roles', 1 );

function authorready_add_role_caps_filter( $caps, $role )
{
/* Only filter for roles we are interested in! */
if( $role == 'bbp_probation' )
$caps = custom_capabilities( $role );

if( $role == 'bbp_subscriber' )
$caps = custom_capabilities( $role );

if( $role == 'bbp_founder' )
$caps = custom_capabilities( $role );

if( $role == 'bbp_leader' )
$caps = custom_capabilities( $role );

if( $role == 'bbp_moderator' )
$caps = custom_capabilities( $role );

if( $role == 'bbp_administrator' )
$caps = custom_capabilities( $role );

return $caps;
}

add_filter( 'bbp_get_caps_for_role', 'authorready_add_role_caps_filter', 10, 2 );

function custom_capabilities( $role )
{
switch ( $role )
{

/* Capabilities for 'probation' role */
case 'bbp_probation':
return array(
// Primary caps
'spectate' => true,
'participate' => false,
'moderate' => false,
'throttle' => false,
'view_trash' => false,

// Forum caps
'publish_forums' => false,
'edit_forums' => false,
'edit_others_forums' => false,
'delete_forums' => false,
'delete_others_forums' => false,
'read_private_forums' => false,
'read_hidden_forums' => false,

// Topic caps
'publish_topics' => false,
'edit_topics' => false,
'edit_others_topics' => false,
'delete_topics' => false,
'delete_others_topics' => false,
'read_private_topics' => false,

// Reply caps
'publish_replies' => false,
'edit_replies' => false,
'edit_others_replies' => false,
'delete_replies' => false,
'delete_others_replies' => false,
'read_private_replies' => false,

// Topic tag caps
'manage_topic_tags' => false,
'edit_topic_tags' => false,
'delete_topic_tags' => false,
'assign_topic_tags' => false,
);

/* Capabilities for 'subscriber' role */
case 'bbp_subscriber':
return array(
// Primary caps
'spectate' => true,
'participate' => true,
'moderate' => false,
'throttle' => false,
'view_trash' => false,

// Forum caps
'publish_forums' => false,
'edit_forums' => false,
'edit_others_forums' => false,
'delete_forums' => false,
'delete_others_forums' => false,
'read_private_forums' => true,
'read_hidden_forums' => false,

// Topic caps
'publish_topics' => false,
'edit_topics' => false,
'edit_others_topics' => false,
'delete_topics' => false,
'delete_others_topics' => false,
'read_private_topics' => true,

// Reply caps
'publish_replies' => true,
'edit_replies' => true,
'edit_others_replies' => false,
'delete_replies' => true,
'delete_others_replies' => false,
'read_private_replies' => true,

// Topic tag caps
'manage_topic_tags' => false,
'edit_topic_tags' => false,
'delete_topic_tags' => false,
'assign_topic_tags' => false,
);

/* Capabilities for 'founder' role */
case 'bbp_founder':
return array(
// Primary caps
'spectate' => true,
'participate' => true,
'moderate' => false,
'throttle' => false,
'view_trash' => false,

// Forum caps
'publish_forums' => false,
'edit_forums' => false,
'edit_others_forums' => false,
'delete_forums' => false,
'delete_others_forums' => false,
'read_private_forums' => true,
'read_hidden_forums' => false,

// Topic caps
'publish_topics' => false,
'edit_topics' => false,
'edit_others_topics' => false,
'delete_topics' => false,
'delete_others_topics' => false,
'read_private_topics' => true,

// Reply caps
'publish_replies' => true,
'edit_replies' => true,
'edit_others_replies' => false,
'delete_replies' => true,
'delete_others_replies' => false,
'read_private_replies' => true,

// Topic tag caps
'manage_topic_tags' => false,
'edit_topic_tags' => false,
'delete_topic_tags' => false,
'assign_topic_tags' => false,
);

/* Capabilities for 'group leader' role */
case 'bbp_leader':
return array(
// Primary caps
'spectate' => true,
'participate' => true,
'moderate' => true,
'throttle' => false,
'view_trash' => false,

// Forum caps
'publish_forums' => false,
'edit_forums' => false,
'edit_others_forums' => false,
'delete_forums' => false,
'delete_others_forums' => false,
'read_private_forums' => true,
'read_hidden_forums' => false,

// Topic caps
'publish_topics' => false,
'edit_topics' => false,
'edit_others_topics' => false,
'delete_topics' => false,
'delete_others_topics' => false,
'read_private_topics' => true,

// Reply caps
'publish_replies' => true,
'edit_replies' => true,
'edit_others_replies' => true,
'delete_replies' => true,
'delete_others_replies' => true,
'read_private_replies' => true,

// Topic tag caps
'manage_topic_tags' => false,
'edit_topic_tags' => false,
'delete_topic_tags' => false,
'assign_topic_tags' => true,
);

/* Capabilities for 'moderator' role */
case 'bbp_moderator':
return array(
// Primary caps
'spectate' => true,
'participate' => true,
'moderate' => true,
'throttle' => true,
'view_trash' => true,

// Forum caps
'publish_forums' => false,
'edit_forums' => false,
'edit_others_forums' => false,
'delete_forums' => false,
'delete_others_forums' => false,
'read_private_forums' => true,
'read_hidden_forums' => false,

// Topic caps
'publish_topics' => true,
'edit_topics' => true,
'edit_others_topics' => false,
'delete_topics' => false,
'delete_others_topics' => false,
'read_private_topics' => true,

// Reply caps
'publish_replies' => true,
'edit_replies' => true,
'edit_others_replies' => false,
'delete_replies' => true,
'delete_others_replies' => true,
'read_private_replies' => true,

// Topic tag caps
'manage_topic_tags' => false,
'edit_topic_tags' => true,
'delete_topic_tags' => true,
'assign_topic_tags' => true,
);

/* Capabilities for 'administrator' role */
case 'bbp_administrator':
return array(
// Primary caps
'spectate' => true,
'participate' => true,
'moderate' => true,
'throttle' => true,
'view_trash' => true,

// Forum caps
'keep_gate' => true,
'publish_forums' => true,
'edit_forums' => true,
'edit_others_forums' => true,
'delete_forums' => true,
'delete_others_forums' => true,
'read_private_forums' => true,
'read_hidden_forums' => true,

// Topic caps
'publish_topics' => true,
'edit_topics' => true,
'edit_others_topics' => true,
'delete_topics' => true,
'delete_others_topics' => true,
'read_private_topics' => true,

// Reply caps
'publish_replies' => true,
'edit_replies' => true,
'edit_others_replies' => true,
'delete_replies' => true,
'delete_others_replies' => true,
'read_private_replies' => true,

// Topic tag caps
'manage_topic_tags' => true,
'edit_topic_tags' => true,
'delete_topic_tags' => true,
'assign_topic_tags' => true,
);

break;

default :
return $role;
}
}

Skip to toolbar