Forum Replies Created
-
In reply to: bbPress Compitiblity issue
can you please post the specific error
In reply to: How to get the ID of the Forum Last Active Author?$author = bbp_get_author_link( array( 'post_id' => bbp_get_forum_last_active_id($forum_id)) ;
In reply to: Error message un bbpressthis is an issue with moderation-tools-for-bbpress – raise this in their support forum
In reply to: 404shave you done
dashboard>settings>permalink and click save – this resets the links and often fixes issues like this
In reply to: How to create user levels?In reply to: Error message after WordPress 4.9.5 updateI can’t replicate this
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
In reply to: Forum is Duplicating Itself?It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
In reply to: Replacing User Avatar with ACF Image Fieldbbpress uses the wordpress default avatar as set in
dashboard>settings>discussion
There are plugins that let you add additional defaults eg
or use code in your functions file or a snippets plugin (https://en-gb.wordpress.org/plugins/code-snippets/) such as
add_filter( 'avatar_defaults', 'mytheme_default_avatar' ); function mytheme_default_avatar( $avatar_defaults ) { $avatar = get_option('avatar_default'); $new_avatar_url = get_template_directory_uri() . '/images/default_avatar.png'; if( $avatar != $new_avatar_url ) { update_option( 'avatar_default', $new_avatar_url ); } $avatar_defaults[ $new_avatar_url ] = 'Default Avatar'; return $avatar_defaults; }
@casiepa – I try to keep up with what’s there as I try not to duplicate, but yes I hadn’t forgotten, but forgot that I didn’t know 🙂
In reply to: BBpress like/reply notificationthe hook is in
includes/replies/functions.php line 424
@casiepa – sorry forgot that was in your plugin !
@editor-mike – go with Pascal’s idea and see if that fixes !In reply to: Removing First & Last Name (Only show First Name)bbpress just uses the display name as set in
dashboard>users>all Users>edit user
so you could change your users to what you want.
users can change their individual if you give them access to their wordpress profile or their bbpress profile.
There are some plugins and code that can change stuff eg
I googled ‘wordpress change display name for all users’ and lots lots of stuff.
In reply to: Spam Forum TopicsThis looks like a site specific issue – if it was general the world would be complaining about this.
Not sure how I can help further
that should work, I’m not sure how to help further
In reply to: Emoji’s don’t show up in notification emailscan you post exactly what you put in the code snippets please
In reply to: No Reply Button on Forumhave you got threading set
dashboard>settings>forums and look for reply threading
In reply to: Pendingwhat other ‘bbpress’ plugins are you running?
In reply to: Spam Forum TopicsI can’t see any obvious issues.
In reply to: BBpress like/reply notificationthere is a hook in the new reply handler you can link to
do_action( ‘bbp_new_reply’, $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author, false, $reply_to );
you could just create your own table and post the data there.
In reply to: can you help meCan’t do a treeview (whatever you mean by that), but my plugin
has an unread posts tab
In reply to: No Reply Button on Forumbbpress doesn’t have a reply tab, it just puts a new reply form at the bottom
probably easier to just add the plugin ‘code snippets’ into your site and put the code there.
That way you will not risk breaking your site
In reply to: Create private topics between users and adminmy private groups plugin will let you do that using topics permissions
create a group, allocate a forum to it, activate topic permissions, set topic permissions to only allow users to create a topic and see replies to that topic. Set users you want to that group.
In reply to: Admin menus disappearedIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back