Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 876 through 900 (of 64,428 total)
  • Author
    Search Results
  • #237971

    Hello all, I recently noticed that there has not been a significant update to the bbPress core for two years. Is the plugin still set to have further updates to keep up with PHP changes and WordPress?

    Thank you,

    #237966

    Topic: Pas de menu

    in forum Troubleshooting
    alombredugrandarbre
    Participant

    Bonjour,

    Je n’ai pas trouvé l’objet de mon problème sur le forum et j’espère ne pas faire de doubleblon. Dans le cas contraire, veuillez m’excuser.

    Suite à la perte de notre forum lors de la mise à jour du php de notre blog wordpress, je cherche à réinstaller bbpress.
    Il me semble avoir suivi la procédure : dans extensions > ajouter > bbpress > installer > activer.
    D’après les tutos que j’ai trouvé, un menu “forum” devrait apparaître dans mon menu général à gauche, mais il n’y a aucun changement.
    Pourriez-vous m’aider à résoudre ce problème s’il vous plait ?

    #237944
    Robin W
    Moderator

    I am not a bbpress author

    A possible reason is detailed on my site

    bbpress role adder

    you could use this to amend the role

    come back if you need to

    #237943

    In reply to: Image upload

    ibnat
    Participant

    Hi, I use GD bbPress Attachments

    GD bbPress Attachments is an easy-to-use plugin for WordPress and bbPress for implementing files upload for bbPress Forums topics and replies. You can control file sizes from the main plugin settings panel, or you can change some attachments settings for each forum individually.

    Works fine for my forum

    norcom41
    Participant

    In a bbPress forum I want to prevent participants from creating topics but allow replies. In searching the Internet I found code examples from which I selected some to build a plugin. I know a little PHP but WordPress is like a “black box.”

    add_action(‘wp_loaded’,’modify_participant’);

    function ‘modify_participant'()
    {
    add_filter(‘mod_participant’, ‘upd_participant’);
    }

    function upd_participant($role,$caps)
    {
    $role = bbp_get_participant_role();
    $caps = modify_capabilities($role);
    }

    function modify_capabilities($role)
    {
    return array(

    // Topic caps
    ‘publish_topics’ => false,
    ‘edit_topics’ => false,
    ‘edit_others_topics’ => false,
    ‘delete_topics’ => false,
    ‘delete_others_topics’ => false,
    ‘read_private_topics’ => false,

    // Topic tag caps
    ‘manage_topic_tags’ => false,
    ‘edit_topic_tags’ => false,
    ‘delete_topic_tags’ => false,
    ‘assign_topic_tags’ => false
    )
    }

    For instance the WP loaded hook causes it to run once at the start which should call those functions to initialize things. Is an add_filter also executed at that time to complete initialization? Then the black box proceeds with the bbp_get_parcipant_role routine so that the capabilities array elements can be updated. I read that WP filters always expect an object to be returned. It seems that these wouldn’t be permanent but just temporary in memory for executing that page. However my suspicion is that more coding would be necessary because that would be too much to depend on the black box for.

    #237935
    TreeTrail
    Participant

    If you prefer that instead of using this old thread, I edit or update the support request that I posted a month ago …just let me know. https://bbpress.org/forums/topic/sub-forums-stop-displaying/

    #237934
    TreeTrail
    Participant

    Robin, thank you so very much for responding!

    Our Sub-Forums stopped displaying a few months ago.  Although I prefer your “Style Pack” layout, users can still click through to access the sub-forums.  The difficulty is at the: WP Users > Subscriptions …the only Forum to display its children is the one, “SKIING” that hasn’t been used since last winter.  (They will start using it soon to plan trips.)

    This issue was noticed after a new topic was added. Around that time I had transitioned from “bbP Toolkit”, so I don’t know if there’s an uninstalled conflict or what.  Sometimes I could get this issue to reset by changing the Sub-Forums “Visibility” setting to “Public” and then back to “Private”.  I cleared browser histories and re-saved Permalinks.  But this is only a temporary solution.

    I had a very similar problem about 2 years ago and solved it by changing: bbPress Forum > Visibility from “Public” to “Private”.   But there were complaints from members about the public visibility of their posts.  So at some point I changed it back to “Private” and unexpectedly it worked fine.  But a few months ago the invisibility of Sub-Forums started back up.

    I created a fresh staging version: https://staging41.wilmingtontrailclub.org/about-wtc/wtc-forums/.  Switched to WP 2022 theme and deactivated all plugins, except bbPress.  The issue still exists.  I will be extremely grateful for any of your expert help.  I’m very willing to privately share Admin and FTP access if helpful.

    #237917
    fadilla
    Participant

    Hello everyone, I’m a beginner using the bbPress plugin in WordPress. I have some questions, and I hope I can get some help.

    1. If I have 3 forums, Forum A, Forum B, and Forum C, and there’s User1 who wants to create a topic but doesn’t want to enter a specific forum first. They want to create a topic and then choose the forum. How can I create a form for this and add the option to select a forum when User1 wants to create a topic?
    2. Can the admin set it as a default so that when User1 creates a topic and someone replies, it automatically goes to their email?
    Thank you in advance.

    #237915
    Ricsca2
    Participant

    I need to create an area on my site where users can write what they need and interested professionals can respond to them.
    I was trying to understand how to do it with wordpress and I thought that I could create categories by type where users can insert a post and all professionals receive an email that that post has been created in the category that they have “selected” as the category of interest.
    If you know other ways I could do this besides bbpress that would be even better.

    #237888
    kingtetra
    Blocked

    I need help fixing this issue with my forum the staging site works fine! The production site does not, I have talked to wordpress support and they couldn’t figure it out either. Everything is the same… How do I fix this issue. Everytime I post to the forum I have to clear cache and cookies to see it. but it works just fine on test site? SOMEBODY HELP! Thank you, here is my sites:
    staging: https://staging-018d-simplysoundadvice.wpcomstaging.com/
    Production: https://simplysoundadvice.com

    #237844
    Shelly
    Participant

    @bethgee It’s been a long time since I did that site but I ended up hiring an expert database person go through it and fix everything. It was a huge move with 1,000s of comments. In the end, it still wasn’t 100% correct as there were some replies still missing that even the database person couldn’t fix. It was a huge fiasco and will never use BBpress again – at least move it from one site to another. Sorry I can’t be more help.

    #237842
    Robin W
    Moderator

    I am not a bbpress author, just someone who helps out here.

    Moving bbpress between sites is surprisingly difficult.

    This is because bbpress is so tightly integrated into WordPress.

    This gives 2 main issues:

    1. Users – bbpress stores topic and reply authors as their WordPress user ID number. So unless the all the bbpress authors users on the source site a) exist on the target site and b) have exactly the same ID numbers on the target site, then imports can have issues.

    2. bbpress users WordPress Custom post types and the WordPress Posts table. This means that bbpress forums, topics and replies are not in a separate table, but integrated into posts and pages table. Many plugins use this method. So on the source site a fourm might have a post ID of say 168, but on the target site post 168 might already exist as say a page. So on import WordPress importer will just allocate it the next ID number in the posts table, lets say 265. Now when topic belonging to the forum 168 on the source site is imported it still thinks it belongs to a forum with a post ID of 168, but this is already allocated to a page, so the topic is not listed as belonging to any known forum. The same applies to topics and replies.

    I’ll post more on this later, but that outlines why it is not working

    #237821
    scratchy101
    Participant

    BTW, I’m using this plugin to sort by descending order.

    #237820
    scratchy101
    Participant

    I’m having the same issue.
    I have the post sort order set to descending and posts per page set to 25.
    On multi-page threads (more than 25 posts) the pagination works correctly for most links except the “Last Post” link. When users click on the link under last post column, they are taken to the last page instead of the first page with the newest reply.
    Would this plugin resolve this issue?
    Or can I edit a PHP file to fix this?

    #237797

    In reply to: wpForo to bbPress?

    gozazomo
    Participant

    It’s been 3 years but no one from bbpress admin or moderation answer the above inquiry?

    I’m wondering how’s their costumer service 🙂

    #237796
    Robin W
    Moderator

    I appreciate that you are feeling a sense of frustration.
    But both WordPress and bbpress are free software, and come with free support offered by volunteers.
    In effect you are asking someone to take their free time to help you, and then complaining that it is not at the level you want.
    When I asked for a link to your forum page, you were unable to provide this, giving a link to a page that does not exist. As such it is hard to help – a bit like asking for help with your car, but then not allowing me to examine your car.
    If you provide a link to the forum, the I may be able to help further, otherwise ethe best I can offer is to read the documentation

    Step by step guide to setting up a bbPress forum – Part 1

    and/or the advice in

    Before Posting

    #237789

    In reply to: Forum layout settings

    Robin W
    Moderator

    bbp style pack

    has lots of options to style and add features to bbpress

    #237788
    kudejstari
    Participant

    Hi, I’ve been seeing that it is generally suggested to use the bbpress importer to get the data from kunena, but in my case it freezes in step 1 and I guess it’s because of the version difference (since bbpress importer has support until kunena3).

    I am looking to migrate a kunena forum in joomla to bbpress with wordpress. The kunena version is 6.x. Is there any way to do it?

    Wordpress version: 6.3.1
    Bbpress version: 2.6.9

    #237750
    enkoes
    Participant

    Try to enable tinymce full editor and you will see the button. Check out this documentation.

    #237746
    1wb5rdd
    Participant

    Folks, this is reference bbPress 2.6.9, WP 6.2.2 and the link to our site forums page is https://www.wb5rdd.org/forums/. My issue is this – Forum users cannot change the font color on their posts. Even with the highest level of access I cannot change the font on the sentence “Please call, text or email me if you can help.” on this page https://www.wb5rdd.org/forums/topic/autumn-in-bonham-bike-rally-radio-operator-assistance-requested/ red. Where are the color choice buttons? Why won’t using HTML code (<FONT COLOR=”#ff0000″> </FONT>) doesn’t even do it. THANKS! – Phillip Beall

    #237732

    Topic: bbpress css

    in forum Plugins
    maciejatmyshca
    Participant

    Hello,

    I also would like to hide Forums from Member Profile Page.

    I have set up Groups Forums only as per instructions here so the Forums on Profle Page is obsolette as I want the forums to be accessible only from Group Page.

    Could anyone kindly advice how to do it please?

    sethbburgess
    Participant

    New to BBPress. WordPress version 6.3.1. Avada theme 7.11.2, BBPress 2.6.9. The default installation of BBpress is picking up colors from my theme which I don’t want. I have followed the instructions in the article https://codex.bbpress.org/themes/theme-compatibility/ like this “The “css” directory contains style sheets that work with the default markup. Copy any you want to modify into a directory named “css” in your theme’s root. eg. /wp-content/themes/%your-theme%/css/” I have created the css directory in the theme root directory and copied the bbpress-rtl.css file to that css directory. I have not yet modified the file. There is no change to the look of BBPress. I even rebooted the server. What am I missing?

    #237708

    Topic: subfolder

    in forum Installation
    Denis
    Participant

    Hello, I just installed bbpress plugin, can anyone explain how to install the main forum page (forum lists) on subfolder, so I can achieve these URLS:

    main forum page – site.com/forums/

    forum category – site.com/forums/categoryname/

    forum post – site.com/forums/topic/topicname

    Are these possible?

    #237699
    Robin W
    Moderator

    in this link

    Formatting of User Profile and Search Results pages

    I suggested this as a solution

    dashboard>Divi >Theme options>Builder >Advanced > Static CSS File Generation > Clear.
    then
    dashboard>divi>Theme Options>Performance> Dynamic CSS option and disable

    THEN critically you need to clear and server side caching, AND clear your browser cache.

    Server side will depend on your host, and/or any caching plugins you have installed.
    Browser – see this helpful article

    How To Clear Cache for All Major Browsers

    then it all worked fine

    Robin W
    Moderator

    posts, postmeta and options

    bbpress just uses the custom post type features of bbpress, so the entries are mixed in with all the page, post and any other custom post types you have.

    options holds the settings

Viewing 25 results - 876 through 900 (of 64,428 total)
Skip to toolbar