Forum Replies Created
-
I’ve added placeholder to version 4.5.3 of my style pack plugin
once activated go to
dashboard>settings>bbp style pack>topic/reply form item 11
selection lists would be custom programming well beyond free help I’m afraid.
In reply to: How can I add registration to my site?make forums private to make them visible to users only
use shortcode
[bbp-register]
or anything in WordPress that does registration – bbpress just uses WordPress registration
In reply to: No Topics showingsounds a reasonable explanation, but can’t say for sure
In reply to: RSS only showing new topics but not repliesI believe this is it
https://bbpress.org/feed/?post_type=topic/
but come back and confirm
In reply to: No Topics showingIn reply to: No Topics showingstart with
dashboard>tools>forums>repair forums an run one at a time
In reply to: Allow user to post same post in different forumsthanks,
this will add throttle to the participant role
Put this in your child theme’s function file – or use
add_filter( 'bbp_get_caps_for_role', 'brandi_role_caps_filter', 10, 2 ); function brandi_role_caps_filter( $caps, $role ) { /* Only filter for roles we are interested in! */ if( $role == 'bbp_participant' ) $caps['throttle'] = true ; return $caps; }
In reply to: I don’t see the plugin on the dashit 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: How can I get the category to display in topicbbp_get_topic_forum_id
In reply to: Carrying theme to individual forumsI used to take part in the European Tall Ships races in the 1980’s – so recognise the logo! many happy memories.
start by reading
Section 8 is the bit to read
In reply to: How do I allow posting URLs in my forum?thanks for posting 🙂
In reply to: New WP Install, Can’t add Topicgreat – glad you’re fixed
In reply to: New WP Install, Can’t add Topicps bbpress just uses WordPress login, so they are one and the same, so login for WordPress (and your membership plugin) is login for bbpress.
and for your test user, see what bbpress role has been set in dashboard>users and edit the user, should be participant
In reply to: New WP Install, Can’t add Topicif the user isn’t logged in, then the forum won’t know who they are (or indeed the membership plugin!)
so if user is logged in, you say ‘The login on this form fails when I use my admin login.’ – can you describe what you mean, and maybe this is ‘membership’ plugin related ? as a test, deactivate the membership plugin and see if that fixes
In reply to: Starter problems – registration not workingbbpress just uses WordPress – so any WordPress registration will be fine – maybe theme my login
In reply to: Starter problems – registration not workingit was something to do with multisite – if you’d replied earlier I would have remembered what I googled to get an answer – I’ll come back if I remember.
In reply to: New WP Install, Can’t add Topicif you want anyone to be able to post, then you need to allow anonymous posting
dashboard>settings>forums and look for anonymous, but unless you really want general public posting I’d suggest not. If you do, look also at ‘bbpress notify no spam’ as another plugin.
I can’t say why the 2nd is happening – I’d suggest you set up a test user and see if they get the same issue.
then come back
In reply to: subforum parent nameThe recommendation is that the file goes in a directory called ‘bbpress’ in the root of your child theme.
ie wp-content/themes/%your-theme-name%/bbpress/xxx.php
where %your-theme-name% is the name of your theme
child theme root works as well, but in ‘bbpress’ just makes it more obvious which plugin’s template you have amended
In reply to: subforum parent namechange
$forum = bbp_forum_id() ;
to
$forum = bbp_get_forum_id() ;
In reply to: subforum parent nameuntested but try
$forum = bbp_forum_id() ; $parent = wp_get_post_parent_id($forum) ; if (!empty($parent)) { echo esc_html( get_the_title($parent) ) ; }
In reply to: Allow user to post same post in different forumsso if only instructors to be able to do this, then you need to add ‘thottle’ to their WordPress permission for their role.
what role do instructors have ?
if custom, what creates this role?
they should be able to give you settings
you’ll need to refer to your hosting provider
In reply to: Incorrect Last Post timeonce activated go to
dashboard>settings>bbp style pack>bug fixes
and enable fix last active time
In reply to: Where is the link to the reply in the bbPress code?ok, it’s just a choice you have, but that is where the url is created