Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 101 through 125 (of 11,582 total)
  • Author
    Search Results
  • #241874
    Pierre-Yves
    Participant

    Hi there,

    Test site latest updates and twenty four theme.

    As explain in title I can’t display forum with 2024 and other blocks themes.

    It’s ok to display forum list with shortcode but not forums.

    Thanks four your help.

    shaynald
    Participant

    Hello,

    On my latest site, the ‘Subscribe’ or ‘Unsubscribe’ button does not show on the Forum page while the Elementor Pro plugin is active.

    This is true when my theme (a child theme of Total) is active. It is also true when the “Twenty Twenty” theme is active.

    I have ruled out conflict with other plugins.

    I am running the current versions of core, theme, and all plugins. The relevant pieces are:
    WP Core: 6.6.2
    Total, Parent Theme: 5.19
    BBPress:2.6.11
    Elementor:3.25.3
    Elementor Pro: 3.25.2

    Unfortunately I cannot share a link to the forum as it is behind a gateway.

    Thank you in advance for any assistance.

    #241796
    titis14
    Participant

    The test just allowed me to confirm that bbpress works with the theme. The production site has backups so if you have to break things to find the solution it’s not a problem it’s still under construction.

    #241795
    Robin W
    Moderator

    ok, so sorry I cannot help further, it is related to a difference between a setting, theme or plugin between the 2 sites, and yes it is tinymce related.

    Given that it is not in production, then you probably want to try disabling things in test to see what is adding it, rather than take out things in production.

    #241794
    titis14
    Participant

    On the production site we see that the bbp-the-content-wrapper class calls nothing see image.
    http://servertitis.free.fr/images/site/bds3.jpg
    On the test site we can see the tmce see image
    http://servertitis.free.fr/images/site/bds4.jpg

    #241793
    titis14
    Participant

    I tested the different modes of bbp-style-pack same. I just disabled all the plugins again same.
    I put another theme same 🙁

    #241792
    Robin W
    Moderator

    ok, so in default mode, you will have the same bar as here. Another plugin or the theme is adding tyhe one on your test server. Are you using the bbp style pack plugin?

    #241791
    titis14
    Participant

    Here are the links to the screenshots.
    My test server: http://servertitis.free.fr/images/site/bds1.jpg
    The production server: http://servertitis.free.fr/images/site/bds2.jpg

    #241772
    titis14
    Participant

    Hello,
    I am building a site with a theme purchased on Envato. On the production server I do not have the bar for the text layout.
    I thought it came from the theme but after installing it on my test server with all the plugins it works on my test server.
    On the production server I disabled all the plugins and it’s still the same.
    I don’t see how to debug this to find what is the cause of this problem.
    My test server:

    The production server:

    I have made good progress I do not want to start from 0.
    Thank you for your help.

    #241737
    bobjgarrett
    Participant

    I am struggling with Search for my forum. The standard WP Search within my site works and includes results from the bbpress forums but only shows individual posts. I’d rather show links to the Topic, or at least have a link in the posts found to the topic.
    So I tried to implement Search within the forum.
    I tried using shortcode [bbp-search] but this changes nothing on the page. I tried the shortcode [bbp-search-form] on the page and got a search box but no matter what text I enter in there I only ever get the same single result which is the latest overall WP post, not a bbpress post.
    I have set “Allow forum wide search” in settings.
    What am I doing wrong?

    getfree
    Participant

    So whenever a user edits their own message the message box is black instead of white and the text color is also black, which obviously is not exactly optimal 🙂

    Our developer says that this is caused by “bbPress Enable TinyMCE Visual Tab”. He installed an empty site with only bbpress which worked fine, but then also TinyMCE which caused the error on the test site as well.

    What to do besides uninstall TinyMCE? I like that thing..

    #241596
    TKServer
    Participant

    Oh nice. I made the disable submit and spinner plugin in my test environment but haven’t put it into prod yet. I’l try your plugin in my test env and see what it does! 7K installs is great.

    #241593
    kimis
    Participant

    I did

    add_action('bbp_new_forum_post_extras', 'my_custom_bbp_new_forum_handler');
    
    function my_custom_bbp_new_forum_handler( $action = '' ) {
    error_log('test function');
        if ( 'bbp-new-forum' !== $action ) {
            return;
        }
    
        if ( ! bbp_verify_nonce_request( 'bbp-new-forum' ) ) {
            bbp_add_error( 'bbp_new_forum_nonce', __( '<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress' ) );
            return;
        }
    
        do_action( 'bbp_new_forum_post_extras', $forum_id );
    
        $forum_title = get_the_title($forum_id);
        $forum_slug = sanitize_title($forum_title);
    
        if (!term_exists($forum_title, 'forums')) {
            $result = wp_insert_term($forum_title, 'forums', array(
                'name' => $forum_title,
                'slug' => $forum_slug
            ));
    
            if (is_wp_error($result)) {
                error_log("Erreur lors de l'insertion du terme : " . $result->get_error_message());
            } else {
                error_log("Terme de taxonomie 'forums' créé avec succès : " . print_r($result, true));
            }
        } else {
            error_log("Le terme existe déjà : " . $forum_title);
        }
    
        $redirect_url = bbp_get_forum_permalink( $forum_id );
        bbp_redirect( $redirect_url );
    }

    but it still doesn’t work the first error log doesn’t appear on the debug file

    #241518
    Robin W
    Moderator

    ok, as a test, can you try with just Astra parent and confirm the issue still exists

    #241487
    smelendez
    Participant

    Hello, George.

    First of all, thanks for sharing that code modifications, it seems to fix the pagination for forums set up inside BuddyPress groups without any problem.

    While following your instructions, I have a problem with the pagination between replies and I would like to ask you. For testing purposes, I have set a maximum of 2 replies per page for each topic. When I create a first reply, it is displayed without problem as topic content, but when I create a second reply, it is not displayed and a new page is not created for pagination. However, when I create a third reply, a new page is created showing the second reply and the third reply.

    I think the problem could be with the initial content that is indicated when creating a topic. As you know, when you create a new topic you are asked for a title for that topic as well as some content as an introduction. When you enter the topic, this ‘introduction’ is displayed in the replies section but is not counted as a reply. So having set a maximum of 2 replies per page for each topic for testing, the first page shows the ‘introduction’ and replay 1, but when creating replay 2, as the same page is showing the ‘introduction’, this new reply is not shown and a second page is not created either as it detects only 1 replay on the first page.

    How could this be solved? On the other hand, the pagination between topics works very well.

    Thank you very much in advance, best regards.

    #241478
    Robin W
    Moderator

    ok, all I can suggest is the standard fault finding…

    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

    #241477
    Manaus
    Participant

    According to my latest tests, either Admin/keymaster and Client/Participant cannot post…

    #241474
    Robin W
    Moderator

    Please notice that the parent Forum is closed, white the child is open.

    That would be a good one to test on your local environment, try opening parent forum and see if that works

    #241458
    Robin W
    Moderator

    sounds like there is something that bbpress is seeing as an error or not filled in field.

    My suggestion would be to get a screenshot of the fields he has completed (and any he hasn’t) and try the exact entry the is trying to create.

    I’d also get him to try posting a test topic with something simple in another forum, or posting a reply to see if it is him, or what he is posting that is the issue

    #241456
    Manaus
    Participant

    A forum user notified me that he cannot post a new topic. He writes the the title, the post body, the tags, and then on clicking on ‘send’ the page gets refreshed on the topics list view, and at the bottom he can still view the post contents still in the form, with the form prefilled with the data already entered.

    His role is participant, and for the sake of testing I faked a participant role to check if the role was blocked. It is not. I managed to post a new toping without hassle.
    The Forum is open.

    Where or how can I get more details about the process? What’s blocking, or what errors are returned, maybe they are hidden. Any suggestion?

    v2.6.11 and wp6.6.2 with following plugins installed

    Plugins:
    bbp style pack
    bbp user ranking
    bbppress notify (no-spam)
    GD bbPress Toolbox Pro

    Thank you very much

    #241361
    Robin W
    Moderator

    Learndash I think hides some stuff, maybe try disabling and see if that is the issue, you can then look at what you need to do there.

    If not, 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

    #241338
    Robin W
    Moderator

    I am just a moderator here, and not a bbpress author.

    The authors tend to release updates every few years, rather than more frequently.

    My personal view is that you should consider bbpress to be a ‘mature’ product, ie any releases will be to fix issues rather than add functionality.

    bbpress is written really well, and has loads of hooks. In essence it is a WordPress product, written by the founder of Wordress, and taken into a plugin by sponsorship from WordPress.
    There are no show stopper bugs in it, it may throw a few deprecation notices (and these are very few at the moment), but WordPress recommends that you should not show error messages in live sites.

    I currently have my test site running WordPress 6.6.x and php 8.2 with no issues.

    The only major issue with bbpress at the moment is that it does not work well with FSE themes.

    However my bbp style pack plugin has fixes for this

    bbp style pack

    as well as block versions of the widgets and a ton of styling and functionality add-ons.

    All plugins are subject to the authors commitment, and bbpress is no different.

    The main WordPress support forums use bbpress, and it would be mega work to move those over to some other product.

    But with open software you make your choices….

    #241306
    Robin W
    Moderator

    ok, that’s like sending your auto mechanic a picture of your Ford and asking him to say what is wrong 🙂

    The best I can say is 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

    #241284
    gkldh
    Participant

    yes, @robin-w its working on server side by default buddyx-theme/twentytwenty and no need any additional code add. May i know the reason why didn’t work on localhost ??

    And Next time I will test it on the server first. If I face any problem then I will post it.

    thank you so much your great help @robin-w

    #241283
    Robin W
    Moderator

    ok, since I cannot see the site, troubleshooting is near impossible.

    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

Viewing 25 results - 101 through 125 (of 11,582 total)
Skip to toolbar