Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 726 through 750 (of 11,510 total)
  • Author
    Search Results
  • #221008
    Back to Front
    Participant

    Hi again 🙂

    I’m using the Twenty Twenty theme with bbpress.

    On any single topic, the ‘next’ link of the pagination jumps to the latest topic. The ‘previous’ link is missing. On the latest topic, the ‘next’ link links to itself.

    On any forum, it does the same.

    On posts, it works as expected.

    This is a child theme, but I get the same results with the parent theme active, and with all plugins other than bbpress deactivated.

    I’ve also asked this question over at twenty twenty theme but no replies. https://wordpress.org/support/topic/pagination-not-working-with-bbpress-topics-replies/#post-14510051
    I guess this question may have more to do with the theme than with bbpress, but perhaps I’m wrong? Do other themes pagination work as expected with bbpress forums and topics? Perhaps I could swap out twenty twenty’s pagination for that of another theme?

    Do you have any clues what’s gone wrong? I think pagination is really important for the site, and the twenty twenty themes style of pagination is very visually appealing, so I’d prefer to get it working rather than delete it!~

    #220999
    Back to Front
    Participant

    Hi sorry its been a while! Been busy with other projects.


    @robin-w
    @webmasterfreya this is what I’ve done to reverse the reply order on certain topics. And now I’ve come back to it after a month, I can’t reproduce the issue of it breaking the pagination. It seems to work as expected, without adding another function to mess with the pagination.

    Install

    bbPress – Sort topic replies

    Remove the parts that sort the forum’s topic order, as they are causing errors, and they aren’t desired for this purpose (sorting the reply order)

    // Adds meta box to the side bar of the Forums edit pages
    add_action( 'add_meta_boxes', 'bbPress_meta_box_add' );
    function bbPress_meta_box_add(){
    	add_meta_box( 'bbPress_meta_box_sort_desc', 'Sort Replies', 'bbPress_forum_meta_box', 'forum', 'side', 'high' );
    }
    

    and

    	// Save sort settings for forum
    		if( $_POST['str-bbpress-sort-replies'] == "desc" ){
    			update_post_meta($post_id, '_bbp_sort_desc', 'desc');
    		}elseif( $_POST['str-bbpress-sort-replies'] == "asc" ){
    			update_post_meta($post_id, '_bbp_sort_desc', 'asc');
    		}else{
    			update_post_meta($post_id, '_bbp_sort_desc', 'dft');
    		}
    

    and

    	// Save show lead settings for the forum
    		if( $_POST['str-bbpress-sort-replies-show-lead-topic-forum'] == "yes" ){
    			update_post_meta($post_id, '_bbp_topic_sort_show_lead_topic_forum', 'yes');
    		}elseif( $_POST['str-bbpress-sort-replies-show-lead-topic-forum'] == "no" ){
    			update_post_meta($post_id, '_bbp_topic_sort_show_lead_topic_forum', 'no');
    		}else{
    			update_post_meta($post_id, '_bbp_topic_sort_show_lead_topic_forum', 'dft');
    		}
    

    I can send the whole file if thats more useful.

    Sorry I hope i’m not missing something that we noticed before? Actually my site is using threaded replies. So unfortunately it’s not using pagination, its unfortunate it can’t have both. But I turned it off to test this and it it worked.

    Regarding the buddypress activity stream…
    Here is an example of a member page with buddypress activity stream.
    https://houseonfire.backtofrontdesign.co/members/forum_2tbmmm/
    I think it also works as expected showing forum replies in the reverse chronological order.

    #220947
    Robin W
    Moderator

    ok, my initial suggestion would be to deactivate bbpress and see if that fixes.

    After that I do the usual troubleshooting :

    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

    #220905

    In reply to: Can’t post replies

    phillykish
    Participant

    What a fast response. Thank you so much! I’ll be testing this tonite. I appreciate it.

    #220859
    Robin W
    Moderator

    ok, so I don’t think that is coming directly from bbpress.

    It may well be a theme or plugin issue.

    eg googling I found this :

    https://wordpress.stackexchange.com/questions/277874/creating-menu-always-gives-error-a-name-is-required-for-this-term

    so

    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

    dlpalumbo
    Participant

    Hi. I’ve got two test forums up. These forums will eventually be used by the Board of our retiree organization to communicate news to members and to facilitate discussion among our various committees.

    I am concerned that a great many of our members are unfamiliar with how a forum works. In particular, I’m not sure they will know to subscribe to a forum to receive emails when a new topic is posted, which, for us, is the primary function of the forum.

    I have found several suggestions on how to accomplish this but, sadly, most are now out of date. I have looked at BuddyPress, but am a bit concerned of the extra overhead the plugin will bring considering we’ve worked hard to decrease load times.

    What is the recommended way to accomplish auto subscription when a new user is added?

    Thanks for helping a clueless newbie.

    Dan

    #220776

    In reply to: Private Messaging

    Thank you, both.

    In terms of feedback I am currently experimenting with Front End PM but have the usual concerns that the developer hasn’t updated it for eight months nor tested it with recent WP versions.

    That’s not to say it doesn’t work of course, but it might not be futureproof.

    BP Better Messages may be a better option in the longer term. Last updated 18 minutes ago as I write.

    John

    Robin W
    Moderator

    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

    #220681
    gloriajameson
    Participant

    Hi Robin,

    The BBpress Messages plugin you mentioned isn’t appearing when I search for the plug-in in WP control panel. Alternatively, clicking through on the link you gave I found this, perhaps this is why it’s not appearing:

    This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

    How about this one, perhaps it’s a newer version? It pops up right away on the control panel:

    BP Better Messages

    #220655
    Robin W
    Moderator

    There are tens of thousands of themes, and tens of thousands of plugins. It would be impossible to test every combination. I can’t say that bbpress has been tested with Avada !!

    As long as both theme and plugin adhere to basic standards, then it is likely that they will work together.

    The plugin is a subset of code from within buddypress, so if you have buddypress you don’t need the plugin.

    #220654
    gloriajameson
    Participant

    Thanks Robin, I had found that but was worried when I found the list of themes it had been tested on didn’t include Avada.

    Also, it sounded like it really would prefer to sit on Buddypress rather than directly onto WP?

    #220652
    gloriajameson
    Participant

    Hi,

    I’m interested in having a user-to-user Private Message function on my site. Simplest possible / no frills.

    My site is .org / wordpress v5.7.2

    Site (not yet in full use) http://forum.thehiddenpeople.ie/

    Currently activated plugins:
    Akismet antispam
    Avada Builder
    Avada Core
    Basic use avatars
    BBPress
    Disable Gutenberg

    I’ve come across a few plugins that sound like possibilities but none that have been tested with Avada. Any recommendations anyone?

    Anonymous User 18731058
    Inactive

    I’m testing out bbPress on my development site, and on the profile page, both bbp_get_user_topic_count and bbp_get_user_reply_count are returning incorrect numbers for all users. When I delete all topics, on my admin account I get a topic count of 1 and reply count of 7. When I test it out on a new user, it starts correctly at 0, but as soon as I create a new topic, the topic count jumps to 2. When I create a new reply, the reply count also jumps to 2. When I delete the topic, I get a topic and reply count of 1. I’ve tried the recount tool in Tools > Forums, but it’s not fixing the issue.

    #220629
    Robin W
    Moderator

    I would suspect this is a 404 error.

    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

    #220618
    Robin W
    Moderator

    ok, this thread was for version 1 of the plugin.

    If you have an issue, 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

    #220590
    Robin W
    Moderator

    my test site with just twentytwenty and bbpress works both with or without the prefix – I just make sure the landing page has the same permalink as the forum slug.

    Every site is unique, so if that is not working for you, I’m not sure what to suggest next – sorry 🙁

    #220575
    Robin W
    Moderator

    However 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

    #220573
    Robin W
    Moderator

    ok so are you seeing these topics in

    dashboard>topics ?

    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

    #220571
    lolataylor1
    Participant

    If you go to my website, this is the path I am taking on my website to get to the topic, which gives me the error.

    https://authorready.com/forum
    From here, I click on the Announcement forum and see two topics: Test Topic Creation and Monthly Calls. When you click on either, it sends me to the 404 page.

    #220563
    Robin W
    Moderator

    can you explain

    Forum > Announcements > Test Topic Creation

    the form is usually at the bottom of the forum listing, what are you selecting in ‘test topic creation’ ?

    #220560
    lolataylor1
    Participant

    WP version 5.7.2
    bbPress Version: 2.6.6
    Astra Theme Version: 3.4.2
    Website: https://authorready.com/forum

    I did a new install of bbPress on my existing site with the Astra LearnDash theme with no child theme. I followed the instructions on the step-by-step page (https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/) to set up the forum and am using the shortcode [bbp-forum-index] to display the forum on my page.

    When I navigate to a topic from the forum (i.e., Forum > Announcements > Test Topic Creation), it shows my 404 page instead of the topic. The same thing happens if I go into the topic from the admin panel and try to preview the page. I have tried to following from other topic support tickets with no success:

    1. Dashboard > Settings > Permalinks and clicked save. No change.
    2. Installed Health Check & Troubleshooting. Health Check was good.
    3. Entered troubleshooting mode and deactivated all but the bbPress plugin with the Twenty Twenty theme. Still no topics, but redirected to the home page instead of the 404.
    4. Installed bbPress WP Tweaks and tried all of the .php page settings with no change.

    Is there something I’m missing? I’m at a loss of what else to try or why it may not be working.

    #220519
    Robin W
    Moderator

    dashboard>settings>discussion is a default wordpress option, so if you don’t have this, then something is wrong outside of bbpress !!

    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

    #220510
    Robin W
    Moderator

    ok, so as a test can you deactivate elementor to see if that resolves – trying to work out what combination causes the issue

    #220507
    nicolaboscolo
    Participant

    To reproduce the problem I installed a clean wordpress 5.7.1. Then Elementor, bbPress and the test plugin. Then I activated them in the same order. At the moment that I activate the test plugin bbPress menu items literally disappear.
    PS: in this configuration I am able access the forum as a user. But when i discovered it on my working site the first time, forum pages were blocked as i described before.

    #220504
    Robin W
    Moderator

    ok, I installed the test plugin, and have not been able to find an issue.

    For instance you say ‘bbPress admin menu items disappear.’ – I can still see all admin items, can you specify an exact example of one that goes eg ‘in this I no longer see that’

Viewing 25 results - 726 through 750 (of 11,510 total)
Skip to toolbar