Forum Replies Created
-
In reply to: Remove in first forum only
great – lots of ways to do it 🙂
In reply to: Can you make a role to subscribe a forum?great
In reply to: User role for forum users onlyyes – that’s all correct. default bbpress role assigned on first login
In reply to: Can you make a role to subscribe a forum?agree line 2, and line 4 should be
$user_id = $user->ID ;In reply to: Opening Subscriber’s profile editor from toolbarno, I recommend that generally you should disable toolbar for all but admins, plenty of plugins do that.
In reply to: Can you make a role to subscribe a forum?This code (untested) should subscribe all current users to forum ID 3
$list = get_users(); if (empty (get_option ('rew_done')) { foreach ($list as $user) { $user_id = $user=>ID ; $forum_id = 3 ; bbp_add_user_forum_subscription( $user_id, $forum_id ) ; } update_option ('rew_done' , 'done' ) ; }Put this in your child theme’s function file – or use
https://en-gb.wordpress.org/plugins/code-snippets/ and load a page, then remove itIn reply to: Opening Subscriber’s profile editor from toolbarhmmm, that function only fires when all plugins are loaded, suggest you try activating it again
In reply to: Opening Subscriber’s profile editor from toolbardo you have bbpress activated ?
In reply to: Whose online / forum statsin style pack, I just list plugins I have found and used on client sites, and were working at the Time of testing. I can’t say if they still work, and sorry don’t have time to test regularly 🙂
In reply to: Can you make a role to subscribe a forum?just looked, yes that seems to only apply to new users
In reply to: HTTP 500 trying to access Replies in WP-AdminI’d suggest you talk to your host provider, but also
It 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: Whose online / forum statsplugins are open source so written for free. Plugin authors can get overwhelmed by support requests, and this often leads them to abandon plugins – that doesn’t mean that they don’t work or need updating – most work perfectly well.
In reply to: Opening Subscriber’s profile editor from toolbarlets you add an ‘edit profile’ to the menu see
dashboard>settings>bbp style pack>login
and also has a shortcode that you can put into a text widget in the sidebar
[bsp-profile’ label=’Edit Profile’ edit=’y’]
see
dashboard>settings>bbp style pack>shortcodes
In reply to: NewbieIn reply to: Can you make a role to subscribe a forum?I think this has what you need
In reply to: User role for forum users onlyforum= participant
worpdress – no role for this siteIn reply to: Locked topics🙂
In reply to: Search only topics not forum / repliesyou’re welcome
In reply to: Locked topics‘nicer’ is always subjective, and I don’t understand what the difference between the papercip and the lock is if you take away the strikethough
In reply to: Locked topicsso essentially the question is how to replace your locked icon with a paperclip – yes ?
In reply to: Locked topicsa topic can be closed, just as a forum can be closed.
If you close a topic, then it is exactly as you describe. It is read only.
In reply to: Search only topics not forum / repliesthen yes the code I sent is fine and works and is enough !!
In reply to: Search only topics not forum / repliesnot quite sure what you are trying to achieve – where are you putting this code ?
In reply to: Search only topics not forum / repliesok, a better filter might be – try adding this to your functions file
add_filter ('bbp_before_has_search_results_parse_args', 'rew_amend_search') ; function rew_amend_search ($args) { $args['post_type'] = bbp_get_topic_post_type() ; return $args ; }In reply to: Search only topics not forum / repliessorry, I’d missed that you were looking at function templates not output templates – sorry it has been a long day.
what function in that template are you changing ?