Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 51 through 75 (of 11,455 total)
  • Author
    Search Results
  • #239110
    ahillmortons
    Participant

    Hi @flamuren

    Did you find the cause of this? I have the same issue.

    When going to Profile>Forums>Replies Created – pressing on anything other than page 1 gives a 404.

    The URL format of: /members/(member)/forums/replies/

    Changes to: /members/(member)/page/2/

    So the /forums/replies/ appears to be missing

    Trying to correct this by changing the URL to: /members/(member)/forums/replies/page/2/

    That simply shows the content from the first link, so only the latest few replies show.

    I can’t seem to find a fix in the settings or overcome it with plugin testing.

    Any advice pointing me in the right direction would be greatly appreciated.

    Many Thanks,

    Andy

    #239055

    In reply to: Expired Version ?

    Robin W
    Moderator

    they are correct that it has not been updated for a couple of years.

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

    #239006
    kagunda
    Participant

    Hi Robin, I also noticed that on my staging site.

    The Forum, which is available to members only shows the entry page. When you try to get into the forum, the elements do not show. My site is: https://tayfamilyhistg.wpenginepowered.com/forum/

    I am using the Oxygen Builder WordPress plugin. When I switch back to a different theme it shows but I don’t understand why the forum is not showing with Oxygen Builder. I am using all the latest versions.

    #238959
    aballagh
    Participant

    Hello.

    I would like a forum index that is separate from the archives page, but haven’t been able to get that working.

    I’ve changed the slug in the settings, created a page with that slug, but it redirects to the posts archives every time.

    If I include the shortcode on the archives page it works fine, but then it’s available to the general public, and I’d like it to be on its own, and available to members only.

    Any help would be appreciated.

    WP and BBP are latest versions. Archives page is here: https://simcoecountygreenbelt.ca/our-work/ and the Forum Index is supposed to be here: https://simcoecountygreenbelt.ca/community/

    #238921
    Tory
    Participant

    I just tested on a different site with only the Yoast SEO plugin installed and running Twenty Twelve theme, and the same issue – the page title (in the <title> tag) is “Forums Archive” and the breadcrumb is “Forums”. SO, maybe that’s just default behavior? Is there any way to change “Forums” to “Community”? Thanks

    #238914
    Robin W
    Moderator

    Thanks, I’ve just tested your scenario above, and yes that is a bug.

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

    Strangely that metabox doesn’t actually let you change the subscribers, it simply lists them, not sure why 🙂

    if you are using

    bbp style pack


    then I’ve included a fix for this in version 5.7.8.

    You can also add comprehensive subscription management functionality for the backend from the ‘subscriptions management’ tab.

    Otherwise you could add this code:

    
    add_action ('bbp_subscriptions_metabox' , 'rew_set_hidden_subscribers' ) ;
    add_action ('bbp_topic_attributes_metabox_save' , 'rew_save_subscriptions', 10 , 2) ;
    
    function rew_set_hidden_subscribers ($post) {
    	// Get user IDs
    	$user_ids = bbp_get_subscribers( $post->ID );
    	$list = implode(",",$user_ids); 
    
    	// Output
    	?>
    	<input name="rew_topic_subscription" id="rew_topic_subscription" type="hidden" value="<?php echo $list; ?>" />
    	<?php
    }
    
    function rew_save_subscriptions ( $topic_id, $forum_id ) {
    	// Handle Subscriptions
    	if ( bbp_is_subscriptions_active() && ! empty( $_POST['rew_topic_subscription'] )) {
    		//update_option ($subscriptions)
    		$subscriptions = explode(",", $_POST['rew_topic_subscription']);
    		foreach ($subscriptions as $subscription_id ) {
    			// Check if subscribed and if so do nothing
    			if (bbp_is_user_subscribed( $subscription_id, $topic_id )) continue;
    			else {
    			bbp_add_user_subscription( $subscription_id, $topic_id );
    			}
    		}
    	}
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    #238906
    Tory
    Participant

    Hello, I am using the latest version of bbPress along with the generatepress theme. I used Method 2 on the getting started instructions and set the forum root slug to “community”, and created a page titled “Community”, with the slug “community”. I used [bbp-forum-index] on the page.

    My only issues are the page title (in the <title> tag) is “Forums Archive”, and I can’t seem to change it. And my breadcrumb trail is Home >> Forums. Somewhere, my site is pulling the term “Forums” for the <title> and breadcrumb (it’s a Rankmath breadcrumb).

    Any ideas?

    #238904

    In reply to: Abandoned?

    Robin W
    Moderator

    To understand that you need to understand that bbpress is a sister project to WordPress.

    Wordpress development (and therefore bbpress development) is funded by

    1. the commercial arm of wordpress – Automattic
    2. Donations and sponsorship from paid plugins and theme organizations who have a commercial interest in ensuring that WordPress continues

    At the moment no-one is sponsoring bbpress development, so no developer is currently being paid to maintain it.

    Hence no-one is updating even the tested to value.

    You could write to the board of wordpress.org, but beyond that not much we can do – I have tried !

    #238899

    In reply to: Abandoned?

    Chuckie
    Participant

    Prevention is better than cure. Why cant the authors simply address the tested up to values etc in the text files and push an update? This will stop those warnings.

    #238887
    Robin W
    Moderator

    bbpress stores entries as WordPress posts within the database.

    My test site has over 8,000 posts and the whole database takes up 155MB.

    It is not something you probably need to worry about – most hosters offer storage in the multiple GB realms.

    Plugins, media and themes take file space (rather than database).

    If you want to keep an eye on it go to

    dashboard>tools>site Health>info>directories and size and you can see what is being used

    #238885
    itdahdev
    Participant

    Thanks for the hint. I already think about it, but did not test it. So now i tried PHP 7.4.x and it works way better, just some server settings to optimize, to pretend memory exhaustion 😉
    So i had some memory issues, easy tto solve in server settings.

    #238873
    n3wjack
    Participant

    Just an update to confirm that this issue is fixed if you use the bbp style pack plugin mentioned above, with the latest version of bbpress. 👍

    #238848
    Robin W
    Moderator

    ok, just tried that, I cannot replicate this on my test site

    so I created a topic by ‘fred’ a participant and logged out.
    I then logged in as an admin, and subscribed to the topic in the front end
    I then went to dashboard>topics>all topics>edit that topic and just clicked update
    I was still subscribed to the topic

    #238831
    andrewshu
    Participant

    Hi,

    I found the issue with the topics subscription.
    How to reproduce this issue:
    1. Subscribe to the topic.
    2. Go to the topic editing in the admin area and update it.
    3. Check the subscription – the subscription is deleted.

    Has anyone encountered this? I tested this issue on 2 installations.

    Regards.

    andrevanberlo2015
    Participant

    Hi,

    My name is André and I’m running into some issues I hope some of you can solve. Good to know is that links to mentioned pages are at the bottom of this post.

    The Issues
    When I create a bbpress forum, the forum index won’t display on the default page I created ( /forums/ ) but displays a blank page.

    The forum index will display on any other different page like this one /forums-2/

    When I visit a test forum I get a blank page again.

    So I thought I would create a new forum slug in bbpress and page accordingly, named guitar-forums as I was sure no other plugin will have claimed that url. But here the same issues. Nothing works on /guitar-forums/ but the index does show on /guitar-forums-2/


    What I’ve done first

    I have had previously installed asgaros forum but have removed the plugin and removed the asgaros data tables from the database. I also deleted the old forums page and emptied the trash.

    I then did:
    switching to default twenty x theme
    purged all cache incl server side caching
    disabling all other plugins
    reset bbpress

    Links
    Default website forum index link: https://vpbex8y4m8.onrocket.site/forums/
    Forum index on a different page: https://vpbex8y4m8.onrocket.site/forums-2/
    Forum link: https://vpbex8y4m8.onrocket.site/forums/forum/test-forum/

    Other Info
    Theme: spectra one
    wordpress version 6.4.2
    bbpress version 2.6.9

    #238787

    In reply to: Custom CSS not loading

    Robin W
    Moderator

    Just retested and that still works on my test site.

    I’ve not used sass, so unsure how it might affect that.

    so 2 things I would try first

    Firstly, see if the changes appear on a computer that has never seen that site before – browsers often keep local copies of files and don’t always spot chnages.

    Secondly try a change you have made in the custom css part of your theme and see if that works.

    If you are at the start of styling the forums, you might want to look at

    bbp style pack

    which has an easy interface to making styling changes, along with a ton of features to make your forum look and work better.

    #238683

    In reply to: Abandoned?

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

    The Wordfence warning is one that is automatically pumped out when a plugin reaches certain parameters. I love Wordfence and use it on all my sites, but these ‘catch all’ warnings can alarm people when they do not need to.

    But with open software you make your choices….

    #238599

    Topic: Abandoned?

    in forum Plugins
    Swiss-Cheese
    Participant

    Word Fence security plugin told me today:

    “Issue Found:

    The Plugin “bbPress” appears to be abandoned (updated November 29, 2021, tested to WP 6.3.2).
    Type: Vulnerability Scan”

    Is this true?

    #238516
    getfree
    Participant

    BUMP.
    Robin, my users are complaining that they are being logged out. It’s not certain yet if that has happened while the browser has just been idle.

    I tested this with keymaster and participant accounts and found no difference when I closed the browser and re-opened it.

    Brave and Edge browsers worked just fine (login, close, re-open and the user is still logged in) but when I tested two different Chrome profiles the other one remembered me, and the other one (again, no difference between participant and keymaster).

    The only difference that I could find was that the one that remembered the login has one plugin, Lastpass, and the other doesn’t have any. But then again a third profile which has a bunch of plugins did not remembered the login.

    I just can’t figure out what could make the difference here.

    #238511
    getfree
    Participant

    Hello BBpressers 🙂

    Left, center and right align show correctly on my moderator account, but like “<p style=”text-align: left;”>vasen</p>” for the forum “participants”.

    Same for adding <h1>HEADER</h1> in the text editor, which the Graphic shows correctly, but when a participant sends the message you just see what you have written.

    Example https://pokerifoorumi.org/aihe/testi-ketju/#post-1918 and the next post.

    How could I approve a bit of basic html, or at the very least get the graphic side to work properly for the participants?

    WP 6.4.2, Hello Theme, BBpress 2.6.9, TinyMCE Visual Tab 1.0.1

    #238424
    electech1313
    Participant

    I tried a new theme and the troubleshooting tool. No joy. I am going to create a clone site from scratch and make sure I install bbpress first and test the edit feature. I’ll install AWPCP second to see if the same issue happens. I’ll post the results once I’m done. Fortunately the site is for testing anyway. I have some users but I know all of them so it won’t be a big deal. I think I installed AWPCP first initially but I don’t remember for sure.

    #238398
    Robin W
    Moderator

    ok, 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

    #238396
    Robin W
    Moderator

    it is unusual to see index.php included in a url

    https://meltdowncnc.com/wordpress2/index.php/forums/topic/website-test-committee-input/

    what theme are you using?

    #238391
    Robin W
    Moderator

    ok, so as a test

    deactivate the AWPCP Classifieds and see if the topic/reply edit then goes to the correct place – if so I’d suspect that AWPCP Classifieds may be looking for ‘/edit/ and taking that through to their page, but let’s see if that happens

    #238378
    electech1313
    Participant

    I recently installed bbpress and AWPCP Classifieds. Whenever a user clicks the edit button to edit their post, it takes them to a page that asks for the Ad email and access key. This page is default with AWPCP and is called -Edit Ad. Inside that page is the shortcode [AWPCPEDITAD]. I disabled the AWPCP plugin to test and the result was when a user clicked the edit button, it then just shows the shortcode text from the -Edit Ad page. I am little more than a beginner when it comes to web development. I have built a few websites but they are all basic and mostly wordpress sites. This is the site address if you would like to look at it. https://meltdowncnc.com/wordpress2/

    The site is for testing. Hopefully once it is done, I can put it into service for my club. Thanks if anyone can help.

Viewing 25 results - 51 through 75 (of 11,455 total)
Skip to toolbar