Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,826 through 3,850 (of 64,515 total)
  • Author
    Search Results
  • #216339
    akira010203
    Participant

    I don’t have anything like that.

    I only got few plugins linked to bbpress (bbp Style pack, unread posts, etc..).

    #216335

    In reply to: API related question

    Jing
    Participant

    Robin, Thank you so much.

    Our developer already looked into it before we posted the question. The plugin does not carry “write” kind of functions. It can “read”.

    Do you know any plugins that might allow a user to post into bbPress?

    #216332
    Robin W
    Moderator

    yes, as keymaster go into her bbpress profile – easiest is to find a topic or reply from her and click her name to get to her profile – and click subscriptions.

    you will then see the topics and forums she is subscribed to, click each one and you can unsubscribe.

    If there are hundreds, come back and I’ll try and help further

    #216322

    Topic: API related question

    in forum Plugins
    Jing
    Participant

    Hi,

    We are building a mobile app that will utilizes the bbPress for its core function.

    We are looking for an API that will allow the user to do the following.
    1. Create a new topic,
    2. Reply to a topic,
    3. Subscribe to the forum
    4. Subscribe to a topic
    5. Display the name of the user who created the topic
    6. Display the name of the user who replied to the topic
    7. Delete a topic he created
    8. Delete the reply he created
    9. Edit the topic he created
    10.Edit the replies he made

    Can you point us to the API if there is any, or the documentation that will help us create the API? Thank you so much.

    #216315
    Robin W
    Moderator

    just tried a shortcode in the footer of my test site running twentyten, and it works on both bbpress and non bbpress pages using the text widget

    #216313
    archux
    Participant

    The function is_bbpress() is for any page of bbpress

    Does not matter, it is account or forum or topic… on all pages…
    Footer is built with visual composer…

    If i use a shortcode to display forum index, the footer works fine. as soon i click into form:

    https://<domain>/forums/forum/<forum name>/ footer breaks
    https://<domain>/forums/topic/<topic name>/ footer breaks
    https://<domain>/forums/user/<user name>/ footer breaks

    It becomes as: [vc_row full_width=”stretch_row” css=”…” ….]…….[/vc_row]

    Looks like on those page the WordPress function do_shortcode is disabled/unactivated…

    Do this make more clear on what pages and what happens with footer?

    #216312
    Robin W
    Moderator

    can you give an example – eg of a footer shortcode that breaks and what bbpress page

    #216307

    In reply to: Bbpress disappears

    Earl_D
    Participant

    Ok but how come when I reinstall there is still nothing no menu nothing at all except bbpress listing in the plugin list

    archux
    Participant

    Hi

    This is a major issue with bbpress and I could not find a resolution to it. I found couple of similar requests but no one have full resolution.

    Basically, if page can be recognized as is_bbpress() true than the footer shortcodes breaks.

    How to fix that? Is there some patch?

    #216303

    In reply to: Bbpress disappears

    Robin W
    Moderator

    if you ran ‘reset’ then yes that deletes everything in bbpress, so you are starting again.

    #216300
    Earl_D
    Participant

    Installed BBPress alongside buddypress got some forums setup and assigned to buddypress groups but experienced 404 error on forum pages so ran the bbpress tools to reset.
    Now everything disappeared all the forums that were created even the bbpress forum menu.

    Deactivated deleted and reinstalled several times but still no change.
    What am I missing? Is there a way to fix this?

    #216273
    akira010203
    Participant

    I dit the trick with some CSS improvments :

    width: 100px;
    padding: 2px;

    @media(max-width:580px) {
    div#bbpress-forums {
    overflow: visible !important;
    }
    	#bbpress-forums span.bbp-admin-links a,
    			#bbpress-forums span.bbp-admin-links 
    			{
    				width: 100px;
    				padding: 2px;
    				color: grey;
    			}
    }
    #216256
    vivekmacadamia
    Participant

    Not showing correct topics under forum not even under wp-admin

    #216249
    uscjohn
    Participant
    #216244
    Robin W
    Moderator

    though old, this plugin still works

    bbPress – Moderation Tools

    #216242
    Stephen
    Participant

    what is the best way to get notifications of new comments from newly resisted users to the forum?
    Do I need to login each time to WordPress or should I receive an email telling me of a new comment so i can monitor. Maybe there is an app?

    bbPress:Version 2.6.6
    WordPress 5.5.3–ko_KR

    #216239
    flamuren
    Participant

    Many thanks I will give it a try. However there is so many things that is not working properly so its starting to become a case for some freelancer site. I dont really know what I am doing 🙂

    I read your guide: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/

    But I cant get the forum to display using method 1 in the above guide. And method 2 is the one I have done from the start but cant get to look the way i want.

    If the plugin “bbp style pack” fix the design, there is still the issue with weird menus and different urls within the forum etc. Could it be that I created the forum before changing WP-theme? Could it help to remove BB-press and then reinstall it from the ground up?

    #216234
    LBandy
    Participant

    Hi Robin,

    Thank you for your suggestions! This plugin seems to be very helpful for Troubleshooting.

    I tried both of your suggestions to no avail. Saving the permalinks didn’t change the links, and the same behavior occurs.

    Disabling all plugins and reverting my Theme to Twnetytwenty allowed me to observe a “404 Not Found” error without being redirected to the home page. It seems like these links like “forums/page/2/” point to non-existing pages, and bbPress doesn’t pick up what topics should be displayed there.

    Any other ideas on how can I further investigate the issue?

    #216233
    Robin W
    Moderator

    try

    dashboard>settings>permalinks and just click save – that resets the permalinks

    If that does not work, then it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, 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.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #216224
    Robin W
    Moderator

    if within content you can use

    How to filter bbpress content in WordPress

    but if at the bottom of ‘bbpress’ pages, then there are a bunch of actin hooks you can link to

    do_action( 'bbp_template_after_forums_index' );
    do_action( 'bbp_template_after_topics_loop' );
    do_action( 'bbp_template_after_replies_loop' );
    do_action( 'bbp_template_after_user_profile' );
    do_action( 'bbp_template_after_search_results_loop' );

    should get you most of the way there

    #216219
    tonygao
    Participant

    hello,

    I use filter “the_content” to automatically add ads at the bottom of pages, posts. But it is not working on bbpress oages(topic, etc)

    #216211
    Lars Henriksen
    Participant

    Hello,

    I would like to use autoptimize on a site with bbpress, but aggregating Js-files breaks the bbpress editor.

    By searching the forum I found this topic, but maybe more files have to be excluded in 2.6?

    Does anyone here aggregate bbpress js succesfully – if so, how?

    Thanks, Lars

    #216196
    wpatters1229
    Participant

    Just installed bbpress in a site using the Divi theme and it does not show up as forum or anything under settings. Does this not work with Divi?? https://sfsuitescsa.com is the site.

    #216158
    Robin W
    Moderator

    @winkelj first version of this that should work with gutenberg is here if you want to test :

    so
    1. Deactivate the existing bbpress topics for posts plugin (no need to delete it, just deactivate)
    2. Go to this site http://www.rewweb.co.uk/download/bbpress-topics-for-posts-v2/ and download the new version
    3. Go to dashboard>plugins>add new>upload plugin and upload the zipped file you downloaded in step 2
    4. Activate and test.

    #216137
    Chuckie
    Participant

    Sorry if this has been discussed before.

    The bbPress topics on my site have part of the topic descriptions as the URLs. Is it possible to change it (just for bbPress) to maybe use topic ID or something so that the URL links were not as verbose?

    Just curious?

Viewing 25 results - 3,826 through 3,850 (of 64,515 total)
Skip to toolbar