Forum Replies Created
-
In reply to: Remove “BBpress Forum” from menu
I’d need a link to your site (not access, just the site where I can see this menu) to see what it is doing
In reply to: Forum Layoutsorry – I don’t know what you are asking
Is this your site, or a site you are trying to mimic?
ok you will need my plugin
https://wordpress.org/plugins/bbp-private-groups/
once installed and activated then go to
dashboard>settings>bbp private groups
and you’ll find a bunch of tabs
At a simple level, you would set up one group (say group 1) in ‘group name settings’ tab for users, and another group (say group 2) for admins and join all users to the users group 1 using the ‘user management’ tab, and all admins to group 2.
Then go to ‘Topic permissions’ tab and activate
Then go to each forum in turn, join it to both groups, and then set the appropriate permissions. Group 1 would just have reply permission and groups 2 full permissions.
In reply to: Forums not using the available spaceno problem – glad you are fixed !
In reply to: Forums not using the available spaceit is your theme doing this
it sets a css rule
.entry-content {
width: 71.4286%;
}and considers bbpress to be entry content.
you could try setting this to 100% – it will work for the forums page, but you’d need to check that it doesn’t upset another part of the site
it looks like you have child theme configurator that will let you have custom css, so put this in it
.entry-content { width: 100%; }
if that doesn’t work try
.entry-content { width: 100% !important; }
come back and let us know
bbpress has its own permissions – you need to configure the bbpress role
if you go into
dashboard>users>all users and edit a user you will find their forum role near the bottom. If you don’t want them to create topics and replies, then set it to spectator
if you want the default to be spectator, then go to
dashboard>settings>forum>auto role and set this to what you want
In reply to: Forums not using the available spaceyour theme is doing this
it doesn’t recognise this as a page, so is allowing for a sidebar.
go to
and look at item 3, and tell me what method you are using. If not Method 2, then try this
In reply to: Is possible custom all my links as nofollow???The nofollow is added on output rather than save, so if you use inspection tools you will see that the actual code sent to browser (and hence seen by robots) has nofollow
eg
<div class="bbp-reply-content"> <p> <a href="http://www.rewweb.co.uk" rel="nofollow">link to my site</a> </p>
In reply to: Is possible custom all my links as nofollow???can you provide a link to an example?
In reply to: Forum Layoutok,
to separate into categories use
https://wordpress.org/plugins/bbp-style-pack/
and go to
dashboard>settings>bbp style pack>forum template and select the alternate template
Then go to
Dashboard>settings>forums>forum root
and note what that is called – usually ‘forums’
then create a page called whatever the forum root says eg ‘forums’ and into the content of this put
[bbp-forum-index]
[bbp-topic-index]That should all work, but come back if you have queries
In reply to: signature separatorah – ok, suggest you post on their support site
In reply to: signature separatorok, can you go to
dashboard>plugins>all plugins and see if you have the plugin
bbP Signature
and confirm that it is activated?
In reply to: Is possible custom all my links as nofollow???by default bbpress adds nofollow to links in content (and elsewhere – wouldn’t swear it was everything, but seems to be!)
In reply to: signature separatorok, I’d need to see a link to the site
if private, contact me via my website
In reply to: Several IssuesIs there a plugin that could enable me to style my forum from the front-end?
in a word – No 🙂
In reply to: Several Issueson your issues
1. you seem to have fixed this
2. Can you explain further what you mean
3. I see a single forum with 1 sidebar – is this now fixed?ditto registration
google
wordpress rest api register new user
gets you several answers
No idea what a rest API is , but bbpress uses wordpress’s register and login processes, so you can simply use those
I googled
wordpress rest api login
and got
http://v2.wp-api.org/guide/authentication/
but there’s a whole site there
glad to have helped !
set your root to ‘xxyy’ – whatever you want to call it
create a page called ‘xxyy’
in the content on that page put
[bbp-forum-index] [bbp-topic-index]
In reply to: signature separatoradd_action ('bbp_theme_after_reply_content', 'rew_hr', 10) ; function rew_hr () { echo '<hr>' ; }
In reply to: You Forgot a Few ThingsI am just a moderator here so have no influence over what is and isn’t included.
If you want login and registration on the menu, then add this plugin
https://wordpress.org/plugins/bbp-style-pack/
and go to
dashboard>settings>bbp style pack>login
In reply to: signature separatortry
add_action ('bbp_theme_after_reply_content', rew_hr', 10) ; function rew_hr () { echo '<hr>' ; }
In reply to: Forum disapeargiven that I can see it, presume you are now fixed?
In reply to: signature separatorthis will be hit or miss, as it is xmas eve, and this code is entirely untried
add_action ('bbp_theme_after_reply_content', rew_hr', 10) ; function rew_hr () { echo '<hr>' }