Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,376 through 1,400 (of 11,598 total)
  • Author
    Search Results
  • #207811
    danielsgirl
    Participant

    We’re noticing slow load times on our forum. Our hosting provider ran a New Relic test and found that the “Walker” template seems to be rather slow. Is this a common issue? Is there a way to fix it?

    Screenshot from test

    #207761
    Robin W
    Moderator

    just tested it – seems fine.

    it could be a theme or plugin issue

    Themes

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

    Then come back

    terranova23
    Participant

    Hi there,

    I have a client who is using BuddyPress and bbPress, among other plugins to run a membership site. Recently they noticed an issue on user profiles, under the Forums tab where Forum Topics Started by that user are listed. The first page shows up fine, but attempting to click on Page 2, 3, or beyond gives a 404 error.

    The site is using WP 5.3.2, BuddyPress 5.1.2, and bbPress 2.6.3 (all latest I believe). The site URL is https://www.themysticdreamacademy.com/

    I have attempted resetting permalinks, disabling all other plugins and reverting to a standard theme, and none of this made a difference. I also dug up lots of forum and support threads which seemed to have similar issues, but it wasn’t the exact same and I couldn’t find a fix.

    One odd thing I noticed is that the URL template for the main page is like this: https://www.themysticdreamacademy.com/members/%5BUSERNAME%5D/forums/

    But when I click to the next page, it loses the /forums to become: https://www.themysticdreamacademy.com/members/%5BUSERNAME%5D/page/2/

    I tried adding back in the /forums part but it still gives a 404. Not sure if this is relevant but I thought I should include.

    Hoping someone can point me in the right direction for fixing this. If you need any other info, let me know. Or if this is more a question for BuddyPress, I can post there. But I figured since it involves forum posts it was more relevant here.

    Thanks,
    Rory

    #207715
    Robin W
    Moderator

    probably because it is not a bug in version 6.x!!!

    it will be theme or plugin related

    Themes

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

    #207687

    In reply to: bbpress control bar

    Voice4Vision
    Participant

    Ok…limitedly tested, so please test further before going live. I have also added tooltips for those using this to easily identify the purpose of each image. Be advised, I am no developer…so you’re on your own. I can not confirm if this causes any security issues. I have been having issues creating this post due to

    ERROR: Duplicate reply detected; it looks as though you’ve already said that.

    Please disregard all previous attempts and keep this latest post!

    1) Put the code at the bottom of your child theme’s functions.php file.
    2) You will need to use your own icons or images.
    3) All image titles are hard-coded, so either ensure all images are renamed or edit the snippet accordingly.

    add_filter ('bbp_before_get_topic_edit_link_parse_args' , 'my_edit_topic_filter', 10 , 1 ) ;
    function my_edit_topic_filter ($args) {
    	$args['edit_text'] = '<img src="../../wp-content/themes/dna-child/images/edit.png" style="cursor:pointer;" title="EDIT">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_topic_merge_link_parse_args' , 'my_merge_topic_filter', 10 , 1 ) ;
    function my_merge_topic_filter ($args) {
    	$args['merge_text'] = '<img src="../../wp-content/themes/dna-child/images/merge.png" style="cursor:pointer;" title="MERGE">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_topic_close_link_parse_args' , 'my_close_topic_filter', 10 , 1 ) ;
    function my_close_topic_filter ($args) {
    	$args['close_text'] = '<img src="../../wp-content/themes/dna-child/images/close.png" style="cursor:pointer;" title="LOCK">' ;
    	$args['open_text'] = '<img src="../../wp-content/themes/dna-child/images/open.png" style="cursor:pointer;" title="UNLOCK">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_topic_stick_link_parse_args' , 'my_stick_topic_filter', 10 , 1 ) ;
    function my_stick_topic_filter ($args) {
    	$args['stick_text'] = '<img src="../../wp-content/themes/dna-child/images/stick.png" style="cursor:pointer;" title="STICKY">' ;
    	$args['unstick_text'] = '<img src="../../wp-content/themes/dna-child/images/unstick.png" style="cursor:pointer;" title="UNSTICKY">' ;
    	$args['super_text'] = '<img src="../../wp-content/themes/dna-child/images/super.png" style="cursor:pointer;" title="GLOBAL STICKY">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_topic_trash_link_parse_args' , 'my_trash_topic_filter', 10 , 1 ) ;
    function my_trash_topic_filter ($args) {
    	$args['trash_text'] = '<img src="../../wp-content/themes/dna-child/images/trash.png" style="cursor:pointer;" title="TRASH">' ;
    	$args['restore_text'] = '<img src="../../wp-content/themes/dna-child/images/restore.png" style="cursor:pointer;" title="RESTORE">' ;
    	$args['Delete_text'] = '<img src="../../wp-content/themes/dna-child/images/delete.png" style="cursor:pointer;" title="DELETE">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_topic_spam_link_parse_args' , 'my_spam_topic_filter', 10 , 1 ) ;
    function my_spam_topic_filter ($args) {
    	$args['spam_text'] = '<img src="../../wp-content/themes/dna-child/images/spam.png" style="cursor:pointer;" title="SPAM">' ;
    	$args['unspam_text'] = '<img src="../../wp-content/themes/dna-child/images/unspam.png" style="cursor:pointer;" title="UNSPAM">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_topic_approve_link_parse_args' , 'my_approve_topic_filter', 10 , 1 ) ;
    function my_approve_topic_filter ($args) {
    	$args['approve_text'] = '<img src="../../wp-content/themes/dna-child/images/approve.png" style="cursor:pointer;" title="APPROVE">' ;
    	$args['unapprove_text'] = '<img src="../../wp-content/themes/dna-child/images/unapprove.png" style="cursor:pointer;" title="DISAPPROVE">' ;
    return $args ;	
    }
    add_filter ('bbp_before_get_topic_reply_link_parse_args' , 'my_reply_topic_filter', 10 , 1 ) ;
    function my_reply_topic_filter ($args) {
    	$args['reply_text'] = '<img src="../../wp-content/themes/dna-child/images/reply.png" style="cursor:pointer;" title="REPLY">' ;
    return $args ;	
    }
    add_filter ('bbp_before_get_topic_split_link_parse_args' , 'my_split_topic_filter', 10 , 1 ) ;
    function my_split_topic_filter ($args) {
    	$args['split_text'] = '<img src="../../wp-content/themes/dna-child/images/split.png" style="cursor:pointer;" title="SPLIT">' ;
    return $args ;	
    }
    add_filter ('bbp_before_get_reply_edit_link_parse_args' , 'my_edit_reply_filter', 10 , 1 ) ;
    function my_edit_reply_filter ($args) {
    	$args['edit_text'] = '<img src="../../wp-content/themes/dna-child/images/edit.png" style="cursor:pointer;" title="EDIT">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_reply_move_link_parse_args' , 'my_move_reply_filter', 10 , 1 ) ;
    function my_move_reply_filter ($args) {
    	$args['split_text'] = '<img src="../../wp-content/themes/dna-child/images/move.png" style="cursor:pointer;" title="MOVE">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_reply_close_link_parse_args' , 'my_close_reply_filter', 10 , 1 ) ;
    function my_close_reply_filter ($args) {
    	$args['close_text'] = '<img src="../../wp-content/themes/dna-child/images/close.png" style="cursor:pointer;" title="LOCK">' ;
    	$args['open_text'] = '<img src="../../wp-content/themes/dna-child/images/open.png" style="cursor:pointer;" title="UNLOCK">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_reply_trash_link_parse_args' , 'my_trash_reply_filter', 10 , 1 ) ;
    function my_trash_reply_filter ($args) {
    	$args['trash_text'] = '<img src="../../wp-content/themes/dna-child/images/trash.png" style="cursor:pointer;" title="TRASH">' ;
    	$args['restore_text'] = '<img src="../../wp-content/themes/dna-child/images/restore.png" style="cursor:pointer;" title="RESTORE">' ;
    	$args['delete_text'] = '<img src="../../wp-content/themes/dna-child/images/delete.png" style="cursor:pointer;" title="DELETE">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_reply_spam_link_parse_args' , 'my_spam_reply_filter', 10 , 1 ) ;
    function my_spam_reply_filter ($args) {
    	$args['spam_text'] = '<img src="../../wp-content/themes/dna-child/images/spam.png" style="cursor:pointer;" title="SPAM">' ;
    	$args['unspam_text'] = '<img src="../../wp-content/themes/dna-child/images/unspam.png" style="cursor:pointer;" title="UNSPAM">' ;
    return $args ;
    }
    add_filter ('bbp_before_get_reply_approve_link_parse_args' , 'my_approve_reply_filter', 10 , 1 ) ;
    function my_approve_reply_filter ($args) {
    	$args['approve_text'] = '<img src="../../wp-content/themes/dna-child/images/approve.png" style="cursor:pointer;" title="APPROVE">' ;
    	$args['unapprove_text'] = '<img src="../../wp-content/themes/dna-child/images/unapprove.png" style="cursor:pointer;" title="DISAPPROVE">' ;
    return $args ;	
    }
    add_filter ('bbp_before_get_reply_to_link_parse_args' , 'my_reply_to_filter', 10 , 1 ) ;
    function my_reply_to_filter ($args) {
    	$args['reply_text'] = '<img src="../../wp-content/themes/dna-child/images/reply.png" style="cursor:pointer;" title="REPLY">' ;
    return $args ;	
    }
    luciana26
    Participant

    Good afternoon!
    I’m reaching out because I’ve checked the settings many times and updated WordPress version and BBpress plugin to the latest version as well and I can’t figure out why this functonalites stopped working. I’m not a programmer I do handle html, css and some basic php.

    I’m having an issue with BBpress not nesting replies anymore and also as an admin I’ve stop receiving the notify emails everytime somebody post a new comment.
    I’ve updated WordPress to version 5.3.2, BBpress to version 2.6.3 and BBpress Notify (No Spam) to version 2.8.

    I’ve cheked the php version my host company is using and is 7.2.7 (beyond what the plugins require).

    Could anyone point me to a solution or reason why is this happening? I’ve also emptied my cache.
    Sorry I don’t post a link to my website is a private learning group.

    Thank you so much! Luciana

    #207577
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

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

    Then come back

    #207463
    danielsgirl
    Participant

    We are using bbPress Private Groups and have tied the groups to roles (we create the roles “Members” plugin). When testing a demo account with one of these assigned roles/groups, the private forum did not show up for them. Does anyone know how to get these to show up? We need certain users to have access to forums based on products/memberships they with us.

    #207435
    Robin W
    Moderator

    bboress has widgets for latest topics and latest replies

    My style pack plugin has latest activity widget and several shortcodes including one to display latest topics

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>shortcodes
    dashboard>settings>bbp style pack>widgets

    for details

    #207399
    angrywarrior
    Blocked

    Pretty much as the subject headlines says… 😉

    Is there a way to display the latest topics/threads on the frontpage?
    In some kind of widget or something?

    The website is https://planetary-alliance.com

    The idea is to have a little section on frontpage displaying the above mentioned.

    Any suggestion that would lead in the right direction would be very appreciated. 🙂

    #207348
    Robin W
    Moderator

    you are assuming that because it doesn’t work for you it doesn’t work for anyone 🙂

    It works fine on my test site.

    so create a new topic and subscribers to the forum get an email when a new topic is created.

    If this is not happening for you, then it could be a theme or plugin issue

    Themes

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

    Then come back

    #207289
    Robin W
    Moderator

    presuming that is what is set in the forums settings, then it could be a theme or plugin issue

    Themes

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

    Then come back

    johnnyontheweb
    Participant

    Thanks, anyway I cannot find anything applying to my case.

    First of all, I must exclude the WP capability named “unfiltered_upload”, since I didn’t activate the unfilted uploading feature. In any case, I made tests and this is not affecting the problem I’m facing.

    Secondly, I tried editing the bbPress role capabilities (the problem is that the advised tool allows only the modification per user, and not for the entire role type), and I didn’t find anything that applies (there’s nothign related to uploads).
    Then I tried to edit WP role capabilites with the help of a plugin, and nothing changes again.

    I’m desperate – I start thinking it’s a problem of my Windows hosting.
    To exclude some things, let me ask 2 questions:
    1. is this a new problem or it arose also in the past?
    2. I found the WP capability “upload_files” for the Subscriber role by default. This is strange, anyway, I tried enabling it but nothing changes.

    thanks in advance for the help

    #207194
    jimandms
    Participant

    Hello all, this is probably a strange request but what the hell, I will give it a shot…

    My site is not live yet, it is at https://jimandms.com/ running the latest version of BuddyPress, bbPress and WordPress. I keep them all updated…

    Anyway, I have added some posts to the forum. Just general housekeeping stuff mostly. And the complete post shows in my feed on my homepage as well as in the forum. Ideally, I would not want anything to show on the home screen when a forum post is made. I want to keep the two separate to a certain extent.

    Or if this cannot be done, then a short blurb about the post with a link to the forum would be acceptable. As it is right now, it shows on the newsfeed as I said and you get a read more on the post and when you click it it shows the whole post.

    Anyone have any ideas about how to accomplish this? I checked all of the settings and I didn’t see anything that would help but it is always possible that I missed something.

    Thanks for reading!
    Jim

    johnnyontheweb
    Participant

    Thanks for your reply. I’ve added the capability by adding in theme functions these lines:

    function my_mime_types($mime_types){
        $mime_types['nvn'] = 'text/plain'; //Adding nvn extension
        return $mime_types;
    }
    add_filter('upload_mimes', 'my_mime_types', 1, 1);

    I made the tests:
    subscriber and keymaster: Sorry, this file type is not permitted for security reasons.
    admin and participant: Sorry, this file type is not permitted for security reasons!!! THE SAME! I modified the same user that was a subscriber, I cannot figure out what’s happening here…

    Robin W
    Moderator

    I’m pretty sure this is WordPress not bbpress, so you are looking at WordPress admin vs subscriber rather than bbpress keymaster vs. participant.

    You don’t say how you added the capability

    eg

    https://www.wpbeginner.com/wp-tutorials/how-to-add-additional-file-types-to-be-uploaded-in-wordpress/

    anyway I’d suggest you do some tests eg set up a user with

    admin and participant
    subscriber and keymaster

    and see which is preventing upload

    #207176
    WP Royal
    Participant

    I have 2.5.14 but with the latest version, I have the same issue. WP version is 4.9.5, I have installed many other plugins as well.

    Thanks

    #207088
    jazimmer
    Participant

    WP 5.2.5
    Theme Enfold 4.5.7
    bbPress 2.6.3
    http://www.infogovsolutions.com

    Forum roles are added by site admin for access to private forums. Users with participant role get the 404 “Oh, bother” message when they try to log into page containing short code : [bbpress forum-index]. I have tested with all other roles and they access the forums as expected. This issue has been identified with new participants being added to the forums. I am not sure if all prior participants are experiencing the same issue. Any help would be appreciated. Thanks.

    #207043
    David
    Participant

    Hi, the CSS provided does not work in the latest version? Is there an update code?

    Thanks

    David

    #207038
    janiszewski99
    Participant

    In all topics on my forum there is incorrect information: “This topic is empty.”

    Test2

    This problem is not only on my site:

    bbPress Forum Anonymous Topic

    How to fix it ?

    #207022
    Tony
    Participant

    Hello,

    After some troubleshooting it appears the latest version of bbPress interfered with showing the subscribe button for individual topics. I confirmed it was there prior to the upgrade.

    Please advise how to resolve the issue.

    Thank you!

    UserCentrix
    Participant

    Import gets stuck in a loop at stage 8. I posted this here before the weekend, but my post seems to have disappeared.

    Since, I have upgraded the XenForo forum to the latest version. Now it says there are no users to import at step 3 (there are many) and the import is still getting stuck in an infinite loop at stage 8.

    mvaneijgen
    Participant

    @johnjamesjacoby that sounds amazing! I’ve did some digging already, but I couldn’t find an easy fix to get it working again.

    If you’ve some pointers to get the code from
    Sven (https://wpup.co/bbpress-threaded-nested-replies-with-paging/) working with the latest version, I’ll gladly do some testing.

    #206958

    Topic: WP version 5.3

    in forum Installation
    Mustafa Sakib
    Participant

    I think the older version was much user-friendly that the latest version 5.3.
    My website is OS Digital World

    Oleksandr Kramer
    Participant

    Custom Field doesn’t work with bbpress 2.6 and above
    I use custom fields for bbpress topics.
    I tried to turn off all plugins and change the theme to default but always receive next javascript error in the console:

    load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:4 POST https://test.3d-kstudio.com/wp-admin/admin-ajax.php 400
    send @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:4
    ajax @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:4
    ajaxAdd @ load-scripts.php?c=0&load[chunk_0]=hoverIntent,common,hoverintent-js,admin-bar,wp-ajax-response,jquery-color,wp-lists,jquery-ui-sortable,postbox,jquery-ui-position&load[chunk_1]=,jquery-ui-menu,jquery-ui-autocomplete,tags-suggest,tags-box,word-count,wp-sanitize,post,editor-expand,thickbox,shortcode,backbo&load[chunk_2]=ne,wp-util,wp-backbone,media-models,wp-plupload&ver=5.3.1:9
    i.wpList.<computed> @ load-scripts.php?c=0&load[chunk_0]=hoverIntent,common,hoverintent-js,admin-bar,wp-ajax-response,jquery-color,wp-lists,jquery-ui-sortable,postbox,jquery-ui-position&load[chunk_1]=,jquery-ui-menu,jquery-ui-autocomplete,tags-suggest,tags-box,word-count,wp-sanitize,post,editor-expand,thickbox,shortcode,backbo&load[chunk_2]=ne,wp-util,wp-backbone,media-models,wp-plupload&ver=5.3.1:9
    (anonymous) @ load-scripts.php?c=0&load[chunk_0]=hoverIntent,common,hoverintent-js,admin-bar,wp-ajax-response,jquery-color,wp-lists,jquery-ui-sortable,postbox,jquery-ui-position&load[chunk_1]=,jquery-ui-menu,jquery-ui-autocomplete,tags-suggest,tags-box,word-count,wp-sanitize,post,editor-expand,thickbox,shortcode,backbo&load[chunk_2]=ne,wp-util,wp-backbone,media-models,wp-plupload&ver=5.3.1:9
    dispatch @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:3
    r.handle @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,suggest,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse&ver=5.3.1:3

    PS. For getting the error the topic must be saved.

Viewing 25 results - 1,376 through 1,400 (of 11,598 total)
Skip to toolbar