Forum Replies Created
-
In reply to: Infusionsoft and Forum Role
you can use the function
bbp_set_user_role( $user_id, $new_role)
$new_role will need bbp_ in front eg bbp_keymaster, bbp_participant etc.
In reply to: width not correcttry this in your theme custom css area
li.bbp-forum-topic-count, { width: 12% !important; }
In reply to: Add class to last topichmmm… the first problem is how do you know when the last topic is being displayed.
so for an individual forum topic list, you want to do what to the last topic ? then I can help with then best way (which may or may not be a class!)
In reply to: width not correctlink to an example on your site please
In reply to: list of all functions@uses bbp_is_single_forum()
Line 882: * @uses bbp_is_single_topic()
Line 883: * @uses bbp_is_topic_edit()
Line 884: * @uses bbp_is_topic_merge()
Line 885: * @uses bbp_is_topic_split()
Line 886: * @uses bbp_is_single_reply()
Line 887: * @uses bbp_is_reply_edit()
Line 888: * @uses bbp_is_reply_move()
Line 889: * @uses bbp_is_single_view()
Line 890: * @uses bbp_is_single_user_edit()
Line 891: * @uses bbp_is_single_user()
Line 892: * @uses bbp_is_user_home()
Line 893: * @uses bbp_is_subscriptions()
Line 894: * @uses bbp_is_favorites()
Line 895: * @uses bbp_is_topics_created()
Line 896: * @uses bbp_is_forum_archive()
Line 897: * @uses bbp_is_topic_archive()
Line 898: * @uses bbp_is_topic_tag()
Line 899: * @uses bbp_is_topic_tag_edit()In reply to: Members pasting text and HTML codes showinggreat – glad you are fixed, and thanks for posting the solution
In reply to: Clearing Notificationsbbpress does not have moderation, so it will be another plugin doing this.
In reply to: bbp style pack plugin is not showingsorry, my plugin is just a styling tool for bbpress, so is completely pointless unless you are using bbpress
In reply to: bbp style pack plugin is not showingcan you try having bbpress AND bbp style pack
In reply to: bbp style pack plugin is not showingIt could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and style pack and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: bbp style pack is not responsivesorry that’s just the way I wrote it
In reply to: bbp private groups plugin Show topicsgreat
In reply to: bbp private groups plugin Show topicsI am private groups author.
Sorry but the plugin does not do that, and I don’t know of any code that does that
In reply to: adding custom bbcode or shortcodes for html divIn reply to: 2.6-rc-7 does not load …/theme/css/bbpress.cssgreat – glad you are fixed
In reply to: Shop Topic Tags on mainpagegreat – glad you are fixed
let us know how you get on
was spam
Put this in your child theme’s function file – or use https://en-gb.wordpress.org/plugins/code-snippets/
and change ‘new text’ to whatever you want
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'Create New Topic') { $translated_text = 'new text'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );
In reply to: bbPress like buttonpeople write plugins for free, and generally because they needed the functionality for their own site.
They publish to help others, but they have no duty to support or maintain them. This is just free software.
That they have not updated doesn’t mean it won’t work, for instance I have 6 plugins and every time wordpress publishes a new version I have to update the text in all 6 to make sure they say they are up to date, even though I have not altered any other code.
When I last looked at this one it worked fine, but I cannot guarantee this.
In reply to: bbPress like buttonstill works as far as I know
In reply to: Undefined offset + Cannot modify header informationIt could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: Undefined offset + Cannot modify header informationwhat php version are you running ?
In reply to: New user registration email does not arrivetalk to your host/hostemail provider, likely that it is being sent as from their email domain, not yours, so being marked as spam
In reply to: Moderator cannot moderate postsIt could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back