Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 1,551 through 1,575 (of 6,788 total)
  • Author
    Search Results
  • #178345
    joannaleng
    Participant

    Hi,

    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 themes

    still 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.

    #178318
    Robkk
    Moderator

    Huh, 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.

    #178278
    Jon Fergus
    Participant

    Correction 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?

    #178186
    Venutius
    Participant

    There 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?

    #178175
    gratefulweb
    Participant

    This 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!

    #178174
    jmock
    Participant

    Hey 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

    #178159

    Topic: Forum Search

    in forum Troubleshooting
    Developer 7002
    Participant

    Hey 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.

    #178133
    23kulpamens
    Participant

    On 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?

    #178131
    giobby
    Participant

    Hi @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.

    #178126
    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%/bbpress

    where %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.php

    bbPress will now use this template instead of the original
    and you can amend this

    you’ll see the tabs in this file.

    Do come back with what you are trying to do if you need further help

    #178122
    giobby
    Participant

    I 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_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 TABLE <YOUR_SCHEMA>.TMP_ORPHANS;

    I hope this helps.

    Gio

    #178107
    Stephen Edgar
    Keymaster

    Hi 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”

    #178098
    Robin W
    Moderator

    less 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

    Ansif
    Participant

    Hi,

    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! 🙂

    #178032
    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.

    #177953

    In reply to: Email notification

    Pascal Casier
    Moderator

    Hi, 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 defi­ned your admin email (Settings > Gene­ral) as ‘admin@g­mail.com’
    • By default, you do NOT receive emails for your own topics/replies, only if some­body else replies on your subscri­bed topics

    Make sure you are subscri­bed:

    • To receive the email for new topics, make sure you are subscri­bed to the forum
    • To receive the email for new replies, make sure your are subscri­bed to the topic
    • Use tools like bbP Manage Subs­crip­tions to check and fix indi­vi­duals or run Topic Subs­cribe to fix in one go.

    Check that WordP­ress emails are working:

    • Make sure to check your spam/junk email
    • Do you correctly receive emails when new posts are publi­shed or any other emails from the site ? If not, try any plugin to check emails (https://word­press.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 spam­ming

    If all the above is fine, then it might be another plugin or a theme issue:

    • Deac­ti­vate 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 deac­ti­va­ting the plugins did not solve, as a test switch to a default theme such as twen­ty­fif­teen, and see if this fixes.

    Pascal.

    #177952
    Pascal Casier
    Moderator

    Hi,
    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 deac­ti­ved all plugins except bbPress and swit­ched 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 dash­board):
    – ‘Set­tings > Forums’ : (de)acti­vate ‘Ano­ny­mous post­ing’, save, (de)acti­vate it again to get back to your origi­nal setting, save
    – ‘Set­tings > Forums’ : (de)acti­vate ‘Auto role’, save, (de)acti­vate it again to get back to your origi­nal setting, save
    – Deac­ti­vate the bbPress plugin, then reac­tive the bbPress plugin
    – ‘Tools > Forums > Repair Forums’ : Remap exis­ting users to default forum roles, click ‘Repair Items’ (WARNING: Make sure to have multiple admins in case the keymas­ter role would disap­pear from one account)

    Pascal.

    #177919
    Robkk
    Moderator

    This 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;
    }
    Robkk
    Moderator

    How 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.

    #177880
    Robkk
    Moderator

    If 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.

    #177852
    Robin W
    Moderator

    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

    #177831
    sno8oker
    Participant

    Title 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?

    #177799
    Robkk
    Moderator

    For 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.

    #177792
    Robkk
    Moderator

    @evanevans333

    It 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.

    #177768
    evanevans333
    Participant

    Hi 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).

Viewing 25 results - 1,551 through 1,575 (of 6,788 total)
Skip to toolbar