Forum Replies Created
-
In reply to: Migrate wp posts to bbPress forums
you’d probably need to hire someone to do this
In reply to: Setting User Forum Role By CodeI’d suggest that the issue is that the bp_core_signup_user is not returning a valid $user_id
you could prove that by writing a console output to see what is being supplied, eg
// create the user from the bp_core method, to make sure it passes the activation mode first $user_id = bp_core_signup_user( $post->username, $post->password, $post->email, [] ); echo "<script>console.log('" . $user_id . "');</script>" ; bbp_set_user_role( $user_id, "bbp_participant" );
and then looking in the console in your browser tools
maybe better to ask the question in ten buddypress support as to why the correct user_id is not being returned
In reply to: Custom fields and controls in editorit is doable but would require bespoke coding
if you want to hire someone, then Milan or I might be able to help
you can change names using my plugin
once activated go to
dashboard>settings>bbp style pack>Forum Roles
In reply to: insert/ edit image (links) not workingdoes it change if you deactivate the bbp style pack plugin ?
In reply to: How to Hire a bbPress Expert for Quick Consults?I do bespoke work on bbpress, but Milan is also excellent, and as he got in first start with him.
In reply to: How to delete replies from frontendnone that I know of for multiple replies
In reply to: How to remove wordpress barlots of plugin to remove admin bar
https://wordpress.org/plugins/tags/admin-bar/
and to design forum
In reply to: Change the Search ButtonIn reply to: Not send email notifications at all userscould be loads of reasons, including throttling by your host provider, intermediate emails systems etc.
In reply to: bbPress ModerationI would first of all try the more up to date version of this
and then reach out to the support forum of that pluigin
In reply to: how to set minimum reply length.great – glad you are fixed
In reply to: Login pagegreat – glad you are fixed
In reply to: how to set minimum reply length.add this to your functions file
function rew_min_length ($reply_content) { if (strlen($reply_content)<61) { bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be at least 60 characters.', 'bbpress' ) ); } return $reply_content ; } add_filter( 'bbp_new_reply_pre_content', 'rew_min_length' );
In reply to: how to create dynamic reply-boxsorry, that’s how it works in bbpress.
But if you do get to someone who has coded, please post the result back here to help others.
my style pack plugin has a button you can add to the pages to make it clearer
once activated go to
dashboard>settings>bbp style pack>Buttons
In reply to: BB press profile pageother people’s public profile is via the author link on topics/replies – ie click any users name link on their post
In reply to: BB press profile pagelink to one’s bbp profile in menu
once activated go to
dashboard>settings>bbp style pack>login
In reply to: possible to pre-fill a post ?anything is possible, but this is a chunk of code that you are hoping someone will do for free 🙂
In reply to: Remove ‘bbPress Forums’ from Menuno problem
In reply to: Remove ‘bbPress Forums’ from MenuI’m pretty sure it’s a setting in your theme which you should be able to blank, but this will fix it in any case
put the following in your theme’s custom css
.fusion-menu-description { display : none ; }
ok thanks for the update
In reply to: Forum sending email notifications to itselfby clicking the ‘create new topic’ in the bar below the bbpress logo
In reply to: Bbpress Sidebar Widthno it is theme dependant
ok, so not my plugin, but I cannot replicate the error
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: the display of topic is whiteok, thanks