Search Results for '+.+default+.+'
-
AuthorSearch Results
-
October 8, 2016 at 1:21 pm #178345
In reply to: Topics not showing up in forums
joannaleng
ParticipantHi,
I am also having the same issue. Have been sitting here for 4 hours trying to fixed it.
i have tried:
disabling all plugins
change to default wordpress themes and other themesstill does not work.
forum is here:
http://www.joannalwleng.com/singleparentworkingmum/your-voice/but topic can be foind here:
http://www.joannalwleng.com/singleparentworkingmum/forum/i am running on multisite but bbpress and buddypress are sitewide forum, no groups and only activated on sub-site.
October 6, 2016 at 11:47 pm #178318In reply to: how to create dynamic reply-box
Robkk
ModeratorHuh, this works for me on my end fine. Maybe it doesn’t work on all themes?
I guess you can confirm that you did download the gist file I linked to and added that to your child themes js folder.
If you have ever set up a localhost test server on your cpu like WAMP, you can try what I said above in a default theme to see if there is another possible issue.
October 5, 2016 at 7:07 am #178278In reply to: Allowing Participants to post “unrestricted HTML”
Jon Fergus
ParticipantCorrection from the above: after enabling the unfiltered_html capability for a specific user, that user posted a reply, and the reply was set as “spam” by default. So… looks like all I need is to know how to make those replies not be identified as spam. Any ideas?
September 30, 2016 at 2:55 am #178186Topic: Add “forums per page” on forum sorter view
in forum Requests & FeedbackVenutius
ParticipantThere is an issue with the forum sorter view (Dashboard>Forums) where once you have more than 20 forums you can no longer move forums from page 2 to page 1, meaning that you can no longer effectively sort the display order of all of your forums. I think the solution to this should be pretty simple, you just need to be able to change the number of forums displayed on the page from the current default of 20 to higher numbers.
Please can you make this change?
September 29, 2016 at 3:40 pm #178175In reply to: ERROR: Your forum must have a parent ?
gratefulweb
ParticipantThis is a super old thread, but I thought I’d post a solution that I used to get by the issue of having to choose a parent forum, when creating a new forum, on the front end of the site.
In my case I just need to default to “NO PARENT” and will never want a user choosing a parent forum when creating a forum. So…
First, put a copy of “form-forum.php” into your child theme (childtheme/bbpress/form-forum.php).
Within form-forum.php, scroll down to the Parent Form label, which has an id of “bbp_forum_parent_id”.
You can comment out then entire bbp_dropdown function and then add an html input field with same name, id and a value of -1.
<input type=”hidden” name=”bbp_forum_parent_id” id=”bbp_forum_parent_id” value=”-1″>
The key part being the value of “-1”
Hope that helps someone!
September 29, 2016 at 3:36 pm #178174Topic: Forum migration troubles
in forum Troubleshootingjmock
ParticipantHey folks,
I’m trying to move our forums from a multisite sub-site to the main site of the multisite install and am running into problems. Here’s what’s happening:
I’m able to export the forums, topics, and replies from the sub-site admin and import them into the main site using WP-CLI without any problems. After the import, if I look at Forums in the admin, everything is there and the counts for the topics and replies are correct, but when I run the repair tools, the topic and reply counts are set to 0, and none of the topics show that they’re in any forum and the topics also show 0 replies.
One thing that could possibly be causing some issues is that running “Recalculate the position of each reply” times out every time I run it. Also, since we have 450,000+ total users and ~13,000 forum users, the “Remap existing users to default forum roles” tool times out as well. I’m attempting to get around that by running a script that takes the user IDs of the 13,000 forum users and adds the bbp_participant role to them with WP-CLI in an attempt to get around the timeout.
Does anyone have ideas as to why the issue with the counts and topics would be happening? Is there a way for me to run the commands the tools page runs on the command line (whether via mysql or WP-CLI or whatever)?
Any help would be very much appreciated.
Thanks!
– Jim
September 29, 2016 at 2:54 am #178159Topic: Forum Search
in forum TroubleshootingDeveloper 7002
ParticipantHey there
we’ve WordPress site for which we’ve setup BBpress for forum section. Forum section topic threads are not included in the default search. can you please let me know how we can make the changes so we can also have BBpress forum topics as a search result on our site?
http://cathlab.com/Thanks in advance.
September 28, 2016 at 3:55 am #178133Topic: Users posts count equals zero in wp-admin/users.php
in forum Troubleshooting23kulpamens
ParticipantOn my wp-admin/users.php page post count column always shows “0”, depite that users have many answers. It is visible on their frontend profile page, but in admin panel post count is always 0.
I’ve tried to recalculate count using “Tools” menu, but nothing changed. Is this default behviour?
September 28, 2016 at 3:32 am #178131In reply to: BBpress 2.6 alpha – problem importing phpBB
giobby
ParticipantHi @senatorman , I think you’ve replied in the wrong topic (https://bbpress.org/forums/topic/bbpress-2-6-alpha-problem-importing-phpbb/page/2/#post-178123).
Just to follow up on your error: I’ve copied and pasted my queries from a Ms Word document and something got broken.
In fact you look at the single quotes in the queries they are all wrong (’ instead of ‘).I have fixed the query for you and you can find the new version below:
/* Get all posts with wrong author and correspondent right author from translator table */ create table TMP_ORPHANS as select <YOUR_SCHEMA>.wp_posts.ID, <YOUR_SCHEMA>.wp_posts.post_author, <YOUR_SCHEMA>.wp_bbp_converter_translator.value_id real_author, IFNULL(<YOUR_SCHEMA>.wp_posts.post_date, NULL) post_date, IFNULL(<YOUR_SCHEMA>.wp_posts.post_date_gmt, NULL) post_date_gmt, <YOUR_SCHEMA>.wp_posts.post_content, CASE WHEN <YOUR_SCHEMA>.wp_posts.post_type = 'reply' THEN (SELECT tmposts.post_title from <YOUR_SCHEMA>.wp_posts as tmposts where tmposts.id = <YOUR_SCHEMA>.wp_posts.post_parent) ELSE <YOUR_SCHEMA>.wp_posts.post_title END post_title, <YOUR_SCHEMA>.wp_posts.post_excerpt, <YOUR_SCHEMA>.wp_posts.post_status, <YOUR_SCHEMA>.wp_posts.comment_status, <YOUR_SCHEMA>.wp_posts.ping_status, <YOUR_SCHEMA>.wp_posts.post_password, <YOUR_SCHEMA>.wp_posts.post_name, <YOUR_SCHEMA>.wp_posts.to_ping, <YOUR_SCHEMA>.wp_posts.pinged, IFNULL(<YOUR_SCHEMA>.wp_posts.post_modified, NULL) post_modified, IFNULL(<YOUR_SCHEMA>.wp_posts.post_modified_gmt, NULL) post_modified_gmt, <YOUR_SCHEMA>.wp_posts.post_content_filtered, <YOUR_SCHEMA>.wp_posts.post_parent, <YOUR_SCHEMA>.wp_posts.guid, <YOUR_SCHEMA>.wp_posts.menu_order, <YOUR_SCHEMA>.wp_posts.post_type, <YOUR_SCHEMA>.wp_posts.post_mime_type, <YOUR_SCHEMA>.wp_posts.comment_count, ( select <YOUR_SCHEMA>.wp_postmeta.meta_value from <YOUR_SCHEMA>.wp_postmeta where <YOUR_SCHEMA>.wp_postmeta.meta_key = '_bbp_author_ip' and <YOUR_SCHEMA>.wp_postmeta.post_id = <YOUR_SCHEMA>.wp_posts.id ) user_ip from <YOUR_SCHEMA>.wp_posts left join <YOUR_SCHEMA>.wp_users on <YOUR_SCHEMA>.wp_posts.post_author = <YOUR_SCHEMA>.wp_users.id left join <YOUR_SCHEMA>.wp_bbp_converter_translator on <YOUR_SCHEMA>.wp_posts.post_author = <YOUR_SCHEMA>.wp_bbp_converter_translator.meta_value where <YOUR_SCHEMA>.wp_posts.post_type in ('forum', 'reply', 'topic') and (<YOUR_SCHEMA>.wp_users.id is null or <YOUR_SCHEMA>.wp_users.id = 1) and <YOUR_SCHEMA>.wp_bbp_converter_translator.value_type = 'user' and <YOUR_SCHEMA>.wp_bbp_converter_translator.meta_key = '_bbp_old_user_id'; /* Do this to be able to create indexes later – some may not work */ ALTER TABLE TMP_ORPHANS modify column post_date datetime default NULL; ALTER TABLE TMP_ORPHANS modify column post_date_gmt datetime default NULL; ALTER TABLE TMP_ORPHANS modify column post_modified datetime default NULL; ALTER TABLE TMP_ORPHANS modify column post_modified_gmt datetime default NULL; ALTER TABLE TMP_ORPHANS modify column user_ip varchar(40); ALTER TABLE TMP_ORPHANS modify column post_title varchar(255); /* we create indexes to speed up the update process */ ALTER TABLE TMP_ORPHANS ADD INDEX(post_date); ALTER TABLE TMP_ORPHANS ADD INDEX(post_author); ALTER TABLE TMP_ORPHANS ADD INDEX(real_author); ALTER TABLE TMP_ORPHANS ADD INDEX(user_ip); ALTER TABLE TMP_ORPHANS ADD INDEX(post_title); /* Revert bad authors to good authors */ UPDATE <YOUR_SCHEMA>.wp_postsINNER JOIN <YOUR_SCHEMA>.TMP_ORPHANS ON <YOUR_SCHEMA>.wp_posts.id = <YOUR_SCHEMA>.TMP_ORPHANS.id set <YOUR_SCHEMA>.wp_posts.post_author = <YOUR_SCHEMA>.TMP_ORPHANS.real_author where <YOUR_SCHEMA>.wp_posts.post_type in ('reply', 'topic') ; /* Drop TMP table */ DROP TABLE <YOUR_SCHEMA>.TMP_ORPHANS;Please remember to execute each query individually and not all of them together.
You can easily distinguish the queries as I have put a comment before each of them.September 27, 2016 at 6:11 pm #178126In reply to: Add custom tab to profile page
Robin W
Moderator@deeve007 – it’s doable, but you’ll need to do some coding.
The key file you want is
wp-content/plugins/bbpress/templates/default/bbpress/user-details.php
so
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/user-details.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/user-details.phpbbPress will now use this template instead of the original
and you can amend thisyou’ll see the tabs in this file.
Do come back with what you are trying to do if you need further help
September 27, 2016 at 4:42 pm #178122In reply to: BBpress 2.6 alpha – problem importing phpBB
giobby
ParticipantI try to post here the steps I did to import from PHPBB to BuddyPress v2.6 alpha.
The concept is the same of what you’ve already read in my previous post but I think the SQL scripts are different.So first of all I’ve created manually all the missing columns in my PHPBB tables (I was converting from an old version of PHPBB and the converter was expecting some columns that didn’t exist – this could not be your case):
ALTER TABLE forum_forums
ADD forum_posts_approved numeric;ALTER TABLE forum_forums
ADD forum_topics_approved numeric;ALTER TABLE forum_topics
ADD topic_posts_approved numeric;ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_facebook varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_twitter varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_occupation varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_interests varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_location varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_youtube varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_skype varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_googleplus varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_website varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_aol varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_yahoo varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_icq varchar(255);ALTER TABLE forum_profile_fields_data
ADD pf_phpbb_wlm varchar(255);Then I’ve performed this KEY STEP: insert a dummy row in the WP_USERS table with a very high userid (e.g.: 99999). This should be higher than the highest userid you have in your phpbb installation.
In this way, when the users get converted, the system will assigned IDs starting from 100000 (again, if you have more than 100K users, then you need a higher value).
This step is necessary, so you will always be able to distinguish the old id (PHPBB, < 100000) from the new one assigned after conversion (>= 100000).After that I’ve started the conversion (it took long).
After converting, the authors of certain posts were wrong.
There is a table that is generated after the conversion that maps the old IDs to the new ones.
So I’ve execute the following scripts to readjust (cannot guarantee this would fix entirely the problem):/* Get all posts with wrong author and correspondent right author from translator table */
create table TMP_ORPHANS as
select
<YOUR_SCHEMA>.wp_posts.ID,
<YOUR_SCHEMA>.wp_posts.post_author,
<YOUR_SCHEMA>.wp_bbp_converter_translator.value_id real_author,
IFNULL(<YOUR_SCHEMA>.wp_posts.post_date, NULL) post_date,
IFNULL(<YOUR_SCHEMA>.wp_posts.post_date_gmt, NULL) post_date_gmt,
<YOUR_SCHEMA>.wp_posts.post_content,
CASE
WHEN <YOUR_SCHEMA>.wp_posts.post_type= ‘reply’
THEN (SELECT tmposts.post_title from <YOUR_SCHEMA>.wp_postsas tmposts where tmposts.id = <YOUR_SCHEMA>.wp_posts.post_parent)
ELSE <YOUR_SCHEMA>.wp_posts.post_title
END post_title,
<YOUR_SCHEMA>.wp_posts.post_excerpt,
<YOUR_SCHEMA>.wp_posts.post_status,
<YOUR_SCHEMA>.wp_posts.comment_status,
<YOUR_SCHEMA>.wp_posts.ping_status,
<YOUR_SCHEMA>.wp_posts.post_password,
<YOUR_SCHEMA>.wp_posts.post_name,
<YOUR_SCHEMA>.wp_posts.to_ping,
<YOUR_SCHEMA>.wp_posts.pinged,
IFNULL(<YOUR_SCHEMA>.wp_posts.post_modified, NULL) post_modified,
IFNULL(<YOUR_SCHEMA>.wp_posts.post_modified_gmt, NULL) post_modified_gmt,
<YOUR_SCHEMA>.wp_posts.post_content_filtered,
<YOUR_SCHEMA>.wp_posts.post_parent,
<YOUR_SCHEMA>.wp_posts.guid,
<YOUR_SCHEMA>.wp_posts.menu_order,
<YOUR_SCHEMA>.wp_posts.post_type,
<YOUR_SCHEMA>.wp_posts.post_mime_type,
<YOUR_SCHEMA>.wp_posts.comment_count,
( select <YOUR_SCHEMA>.wp_postmeta.meta_value
from <YOUR_SCHEMA>.wp_postmeta
where
<YOUR_SCHEMA>.wp_postmeta.meta_key = ‘_bbp_author_ip’ and
<YOUR_SCHEMA>.wp_postmeta.post_id = <YOUR_SCHEMA>.wp_posts.id
) user_ip
from <YOUR_SCHEMA>.wp_posts
left join <YOUR_SCHEMA>.wp_userson <YOUR_SCHEMA>.wp_posts.post_author= <YOUR_SCHEMA>.wp_users.id
left join <YOUR_SCHEMA>.wp_bbp_converter_translator on <YOUR_SCHEMA>.wp_posts.post_author= <YOUR_SCHEMA>.wp_bbp_converter_translator.meta_value
where
<YOUR_SCHEMA>.wp_posts.post_typein (‘forum’, ‘reply’, ‘topic’) and
(<YOUR_SCHEMA>.wp_users.id is null or
<YOUR_SCHEMA>.wp_users.id = 1) and
<YOUR_SCHEMA>.wp_bbp_converter_translator.value_type = ‘user’ and
<YOUR_SCHEMA>.wp_bbp_converter_translator.meta_key = ‘_bbp_old_user_id’;/* Do this to be able to create indexes later – some may not work */
ALTER TABLE TMP_ORPHANS modify column post_date datetime default NULL;
ALTER TABLE TMP_ORPHANS modify column post_date_gmt datetime default NULL;
ALTER TABLE TMP_ORPHANS modify column post_modified datetime default NULL;
ALTER TABLE TMP_ORPHANS modify column post_modified_gmt datetime default NULL;
ALTER TABLE TMP_ORPHANS modify column user_ip varchar(40);
ALTER TABLE TMP_ORPHANS modify column post_title varchar(255);/* we create indexes to speed up the update process */
ALTER TABLETMP_ORPHANSADD INDEX(post_date);
ALTER TABLETMP_ORPHANSADD INDEX(post_author);
ALTER TABLETMP_ORPHANSADD INDEX(real_author);
ALTER TABLETMP_ORPHANSADD INDEX(user_ip);
ALTER TABLETMP_ORPHANSADD INDEX(post_title);/* Revert bad authors to good authors */
UPDATE
<YOUR_SCHEMA>.wp_postsINNER JOIN <YOUR_SCHEMA>.TMP_ORPHANS
ON <YOUR_SCHEMA>.wp_posts.id = <YOUR_SCHEMA>.TMP_ORPHANS.id
set <YOUR_SCHEMA>.wp_posts.post_author= <YOUR_SCHEMA>.TMP_ORPHANS.real_author
where <YOUR_SCHEMA>.wp_posts.post_typein (‘reply’, ‘topic’) ;DROP TABLE <YOUR_SCHEMA>.TMP_ORPHANS;
I hope this helps.
Gio
September 27, 2016 at 12:20 am #178107In reply to: Getting Last Topic or Post Date
Stephen Edgar
KeymasterHi if you’re still around would like to know how you changed Freshness to Last Post?
bbPress 2.6 will no longer use “Freshness”, the default is now “Last Post”
September 26, 2016 at 1:03 pm #178098In reply to: Installed bbPress can’t find forum on WordPress site
Robin W
Moderatorless shouty with the title, and a little bit of patience would be great !
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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
September 26, 2016 at 2:32 am #178093Ansif
ParticipantHi,
Anyone, can you please let me know : How can i able to modify listing options in default bbpress templates?
I want to edit listing options in : bbpress/loop-topics.php
I referred this forum : https://bbpress.org/forums/topic/display-list-of-topics-under-specific-forum/
But, not helped well.
Thanks! 🙂
September 21, 2016 at 5:42 pm #178032In reply to: Strip HTML Tabs from forum
Doug Smith
Participant@robkk, That would be to allow additional tags, right?
In this case it looks like tags are getting into the content that already are not allowed by default. The screen shot shows a span tag, which is not included in the bbPress allowed list in bbpress/includes/common/formatting.php.
I have also seen this happen with TinyMCE activated. It seems to be iOS users and they claim that they haven’t pasted anything, but I have not observed this for myself yet.
September 20, 2016 at 11:13 am #177953In reply to: Email notification
Pascal Casier
ModeratorHi, email sending issues are almost never an issue of bbPress, so I doubt there is anything to fix on the bbPress side.
First things to note:
- Spam filters tend to put emails into spam if your site is e.g. ‘www.example.com’ but you have defined your admin email (Settings > General) as ‘admin@gmail.com’
- By default, you do NOT receive emails for your own topics/replies, only if somebody else replies on your subscribed topics
Make sure you are subscribed:
- To receive the email for new topics, make sure you are subscribed to the forum
- To receive the email for new replies, make sure your are subscribed to the topic
- Use tools like bbP Manage Subscriptions to check and fix individuals or run Topic Subscribe to fix in one go.
Check that WordPress emails are working:
- Make sure to check your spam/junk email
- Do you correctly receive emails when new posts are published or any other emails from the site ? If not, try any plugin to check emails (https://wordpress.org/plugins/check-email/)
bbPress v2.5.x email sending:
In its current version, bbPress is sending out 1 message for every user subscribe to a forum or topic. This could be seen as spamming
If all the above is fine, then it might be another plugin or a theme issue:
- Deactivate all plugins except bbPress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
- If deactivating the plugins did not solve, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Pascal.
September 20, 2016 at 11:05 am #177952In reply to: BBpress disapeared from WP-Admin
Pascal Casier
ModeratorHi,
First check is always to see if another keymaster can still see the bbPress parts. If so, ask him/her to demote and promote you again as keymaster. If you are the only keymaster, create a new account, make keymaster and try the operation from there.If that didn’t help then try these actions:
If you have already deactived all plugins except bbPress and switched to a default theme and you still do not see ‘Forums’, ‘Topics’ and/or ‘Replies’, then please try this in Settings > Forums (check after every step if you find the options back on your dashboard):
– ‘Settings > Forums’ : (de)activate ‘Anonymous posting’, save, (de)activate it again to get back to your original setting, save
– ‘Settings > Forums’ : (de)activate ‘Auto role’, save, (de)activate it again to get back to your original setting, save
– Deactivate the bbPress plugin, then reactive the bbPress plugin
– ‘Tools > Forums > Repair Forums’ : Remap existing users to default forum roles, click ‘Repair Items’ (WARNING: Make sure to have multiple admins in case the keymaster role would disappear from one account)Pascal.
September 18, 2016 at 6:29 am #177919In reply to: Widget CSS issue in Mesocolumn theme
Robkk
ModeratorThis issue is caused because the widget links have the same classes as other links throughout bbPress. In your theme mesocolumn, there is CSS in a bb-css stylesheet that bolds the forum titles.
In this custom CSS I just set a default font-weight for any widget area.
You may need to show your theme author this so that maybe they can add it or something similar to their theme.
And I need to note this down as a possible issue that users might occur when customizing their forums/developing themes.
This is custom CSS add it in the custom css area your theme provides.
.widget-area li a { font-weight: normal; }September 16, 2016 at 2:33 am #177887Robkk
ModeratorHow to make all links in the forum with re=”nofollow”?
Its like that by default.
How to disappear content for how not login? so just in he will login, the info will appear to him?
I am guessing you want Private forums/content. You can use a couple of plugins depending on how private you want these forums.
How to disappear content for how not login? so just in he will login, the info will appear to him?
By default in bbPress, if you edit each forum, you are able to set a forum to public, private, or hidden. Setting a forum to private will only allow users who are logged in to see the content.
September 15, 2016 at 3:12 pm #177880In reply to: User registration password?
Robkk
ModeratorIf you aren’t using any plugins that modify the registration process or custom frontend registration forms and instead are using the default WordPress registration forms, right after you get an activation link in your email, you should be redirected to a strong autogenerated password that you can edit if you want, just make sure to edit it before you hit reset password. If a user wants to change their password later they can also do that in their bbPress edit profile section.
As for the emails going to spam, a way that can help this is by sending email through an SMTP server for your site. There are a bunch of plugins on WordPress that can help configure this.
September 15, 2016 at 7:15 am #177852In reply to: installed bbpress on my site and cannot find it
Robin W
ModeratorbbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
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
September 14, 2016 at 3:06 am #177831Topic: Suggest already used tags in topics at creating new topic
in forum Showcasesno8oker
ParticipantTitle said it all. I want to have dropdown menu with used tags or some cloud of tags from which topic creator can select already used tags for their new topic (default is that you type tags that you want). Main reason I wanna do this is not to have duplicate tags with similar spelling or just different at 1 letter. Any suggestions?
September 12, 2016 at 3:41 am #177799In reply to: there is no bbPress sidebar
Robkk
ModeratorFor beginners use a plugin like widget logic.
That piece of the guide I wrote was a simple approach to creating a bbPress only sidebar for a default theme, it needs to be explained more for beginners, and requires some theme dev knowledge.
September 12, 2016 at 3:16 am #177792In reply to: Participants cannot see topics in private forums
Robkk
ModeratorIt seems that’s all we got to work with. Participant role is not supposed to be for wordpress Subscribers apparently. You need to become something else, to read topics and replies inside forums marked private, and I guess shouldn’t mark a forum private with bbPress unless it’s supposed to be private for Moderators and Administrators.
That seems so … ridiculous if you pardon my French. That Forum Roles are not for forum privacy, but more for Forum administrative privacy.
You are probably experiencing a bug, or just some issues with your current configuration, private forum should be for logged in users only. Also a specific forum for mods and admins might be a hidden forum.
Im skimming through the topic right now, but I will look at this topic more tomorrow morning and see if I need to report any issues.
What I say that we do is try to fix the private forum issue in bbPress by default without using Robins plugin for now, then when its fixed you can decide to use it later if you want to.
Run the repair tools one at a time in Tools > Forums. There are a few that are definitely helpful like repairing private forum relationships.
Editing user role caps for some users could cause issues as well, so we might need to refresh each roles caps, and remap the default ones to users.
that I am supposed to set their privacy to Public and use some kind of FORUM PRIVACY plugin to make sure the content doesn’t get leaked out to Google and anonymous web surfers.
If you want a forum for only logged in users setting a forum or parent forum private will do that. Other niche privacy features could be obtained through plugins.
Now, the issue moving forward is, that topic and reply activity that go on inside those forums, is not properly being set to Private and so those Activities are showing up in widgets and shortcode locations and archives as public information
Do you want all your forums to be private? It might be better to put anything bbPress as members only content, like just block off sections of your site to only members using a different type of plugin.
If you do want some forums to be public, then I guess we can use some conditionals for some widgets to display different widgets for logged in users and those who are not. Like say the recent replies widget, I would display only replies from public forums to users not logged in in one widget, and display all replies to users who are not logged in another. If you do want to use Robins plugin, he does have custom widgets in it, but that is if you want group forums.
September 10, 2016 at 5:44 pm #177768In reply to: Participants cannot see topics in private forums
evanevans333
ParticipantHi Robin, thanks for helping some more…
What I’m saying is, I used a plugin called BBP PRIVATE GROUPS in order to “privatize” certain forums because the forum was set to be viewable only by people of a certain “group”. In that plugin, the main group is called GROUP1, which I just named “Subscribers” (just a coincidence that I name it that) and I can apply it to everyone who has registered (Subscriber role) on my website across the board.
Then I set the bbPress privacy of the Forum, to PUBLIC, and made it so that only GROUP1 people can access it in the privacy settings of BBP PRIVATE GROUPS, by setting that Forum to require GROUP1 access.
It’s an absolutely absurd workaround, because I’m literally setting the privacy to PUBLIC in bbPress and than using another plugin to make the Forum Private, but by doing it this way, at LEAST my Participant Subscribers can access the “Public” forum, so long as they are members of the BBP PRIVATE GROUPS – GROUP 1 “Subscribers” group.
So basically, I am doing what bbPress should do by default, but as a workaround with an entirely different plugin to handle it. The privacy restriction or permissions could not be properly handled with bbPress setting a forum to “Private”, so I am using that BBP PRIVATE GROUPS plugin to set it to private.
The ultimate goal of all this, was, to make sure that people who are registered to my site, can view and participate in Forums that anonymous/google/bots cannot see. But when I tried to do that by setting a forum’s privacy to “Private” bbPress annoyingly made it so that Participants registered with my website could go INTO the forum and see the Forum and Topic counts, and could post topics, but could NOT see the topics in there nor replies or reply to anything.
In order for a role to “See” those Topics and Replies, they had to be a Moderator, Keymaster, or Administrator. Even IF bbPress team wants Participant member caps to behave like this, they should at LEAST provide a role between Participant and Moderator, so that normal registered users of a bbPress enabled website, can participate in forum discussions cutoff from anonymous web viewing because they are set to “private”.
Now, the issue moving forward is, that topic and reply activity that go on inside those forums, is not properly being set to Private and so those Activities are showing up in widgets and shortcode locations and archives as public information, because those kinds of presentations of the information inside those forums are not governed by the BBP PRIVATE GROUPS plugin. In other words, it’s a mess, and this really should be handled by bbPress. bbPress should give us the ability to modify caps on Participant, or like I said, at least provide a ROLE that is an inbetween that is compatible with the development of all other plugins that work with bbPress (ie: we need bbPress to create this role as a standard).
-
AuthorSearch Results