Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 2,051 through 2,075 (of 11,570 total)
  • Author
    Search Results
  • #188268
    Robin W
    Moderator

    tested !

    #188264
    snowfun87
    Participant

    test

    #188259
    Jason
    Participant

    Update… if I go to Settings > Reading and change the value in “Blog pages show at most” to 2, I can access the 2nd page link (…page/2), but not the 3rd page. If I change the value in “Blog pages show at most” to 1, I can access all 3 pages. I only have 3 pages of topics, so I am not able to test higher page number navigation links.

    It’s worth noting that regardless of the setting, I can always access the URL that ends in page2 and page3 (without the inbetween slash “/”). And, it appears that WordPress itself displays the page navigation links just fine. This pagination problem seems to be isolated to the bbpress plugin.

    #188256
    Roed
    Participant

    Latest discovery is that if I edit a topic or reply in the admin and save this without editing anything, only go in and press save, then all is good at the front end.
    But with over 40.000 replies this is going to take pretty long time 😀

    #188219
    Robin W
    Moderator

    most likely your theme or another plugin is expecting bbpress to be there.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    traceyr-london
    Participant

    Hi Robin,

    Thank you thank you thank you! I’m so grateful – that was one thing in all the testing I did that I didn’t notice happening…

    I think I got a bit panicked as there have been a lot of users subscribing (I suspect spam ones though, as the email addresses & usernames all have almost identical formats) and none were participants…

    You time & help is really appreciated!
    thanks
    Tracey

    traceyr-london
    Participant

    I have a new website/forum set up at https://freremanu.com/forum/ which has been working fine until the last few days. When I set up test users using the registration form on the side of the forum page, it would correctly set the user roles as “Subscriber/Participant” – but since about a week ago, it is only setting them as “Subscriber”.

    Even if then go and manually change the forum role to “participant”, when I sign in with the test user it says the forum page is “Not Found”.

    I have tried disabling all plugins & checking, but this makes no difference.

    Whether I register through the Forum widget (sidebar) or through the WP Login page, the result is the same – the role is just set to Subscriber.

    Does anyone have any idea what has gone wrong, and more importantly, how I can fix this?

    thanks in desperation!
    Tracey

    cold-designer34
    Participant

    bbpress version 2.5.13
    wordpress version 4.8
    theme Avada

    Hi

    I’ve looked around support forum here and also carefully through my localhost installation (where my bbpress forum is currently installed for test purposes) and I’m dashed if I can work out how to use .htaccess to password protect the entire forum.

    I’m aware that there are other ways to authenticate users but some of my clients website visitors are young people and we are keen to ensure that access to the website forum is restricted most severely. By this I mean we wanted to place the forum in its own directory and then place .htaccess and .htpasswd in that directory to limit access to individuals who had personally been handed a note of what the username and password were.

    Might I ask if I’ve missed something simple? Any help would be greatly appreciated.
    Have a great day
    Gav

    #188141
    #188140

    Topic: Widget help

    in forum Installation
    carzpk
    Participant

    Need help pleass
    I have installed the bbpress plugin and but its not showing in widget section like i cant add widget to it
    Also in the forum everything is white like these buttons where you can post a topic
    I am latest wordpress and using premium theme

    Thankyou

    #188136
    Robin W
    Moderator

    not tested but try adding this to your functions file

    add_filter( 'bbp_get_reply_author_display_name', 'rew_display_first_name' 10, 2);
    
    function rew_display_first_name ($author_name, $reply_id ) {
    	$reply_id = bbp_get_reply_id( $reply_id );
    
    		// User is not a guest
    		if ( !bbp_is_reply_anonymous( $reply_id ) ) {
    
    			// Get the author ID
    			$author_id = bbp_get_reply_author_id( $reply_id );
    
    			// Try to get a display name
    			$author_name = get_the_author_meta( 'first_name', $author_id );
    
    			// Fall back to user login
    			if ( empty( $author_name ) ) {
    				$author_name = get_the_author_meta( 'user_login', $author_id );
    			}
    
    		// User does not have an account
    		} else {
    			$author_name = get_post_meta( $reply_id, '_bbp_anonymous_name', true );
    		}
    
    		// If nothing could be found anywhere, use Anonymous
    		if ( empty( $author_name ) )
    			$author_name = __( 'Anonymous', 'bbpress' );
    
    		// Encode possible UTF8 display names
    		if ( seems_utf8( $author_name ) === false )
    			$author_name = utf8_encode( $author_name );
    
    return apply_filters( 'rew_display_first_name', $author_name, $reply_id );
    }
    #188091
    coreymcollins
    Participant

    I’ve been fighting with how to enable the Topics CPT for all users in the dashboard and not having a great time. I thought I could, perhaps, filter the CPT registration to change the CPT caps and show_ui settings, but no luck.

    Even when I am able to get the Topics CPT to display for all users by commenting out the lines noted below as a test:

    
    // Register Topic content type
    register_post_type(
    	bbp_get_topic_post_type(),
    	apply_filters( 'bbp_register_topic_post_type', array(
    		'labels'              => bbp_get_topic_post_type_labels(),
    		'rewrite'             => bbp_get_topic_post_type_rewrite(),
    		'supports'            => bbp_get_topic_post_type_supports(),
    		'description'         => __( 'bbPress Topics', 'bbpress' ),
    		// 'capabilities'        => bbp_get_topic_caps(),
    		// 'capability_type'     => array( 'topic', 'topics' ),
    		'menu_position'       => 999999999999,
    		'has_archive'         => ( 'forums' === bbp_show_on_root() ) ? bbp_get_topic_archive_slug() : false,
    		'exclude_from_search' => true,
    		'show_in_nav_menus'   => false,
    		'public'              => true,
    		// 'show_ui'             => current_user_can( 'bbp_topics_admin' ),
    		'can_export'          => true,
    		'hierarchical'        => false,
    		'query_var'           => true,
    		'menu_icon'           => ''
    	)
    ) );
    

    Things still don’t completely work. Users can technically create a post, but can’t save the Forum in which the post is created.

    The short of it is: I want users with the Participant Forum Role to be able to see the Topics CPT in the dashboard so they can create their posts here, mainly because it would be helpful for them to be able to Preview a topic before posting it. Out of the box, the front-end bbPress form does not allow for post previews.

    Has anyone achieved this?

    Using:
    WP 4.8.3
    bbPress 2.5.14

    #187970
    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Otherwise/additionally talk to your hosting provider

    #187960
    jkw217
    Participant

    Hello all, I have been searching for a solution and it appears that the bbpress install does not automatically add topic structure like this example:

    import old Buddypress forum : users = ANONYMOUS

    NOTE: “/forums/topic/import-old-buddypress-forum-users-anonymous/”

    On my bbpress install topics structure looks like this:

    “/topic/test/” – where “test” is the topic title

    I wish to include the forums structure like the bbpress.org forums does.

    I have searched and searched and let me to result in making a post. Does bbpress not include this automatically like they have on their forums?

    Thank you kindly,
    J.

    #187913
    Eric Malalel
    Participant

    I use bbPress 2.5.14 on latest WP.
    I have enabled TinyMCE with this code:

    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
    function bbp_enable_visual_editor( $args = array() ) {
    	$args['tinymce'] = true;
    	$args['quicktags'] = false;
        return $args;
    }

    It works well when a user posts a new topic.
    But when a user wants to reply to a topic, the tinyMCE editor is displayed but is not editable.
    I can’t see any error in the browser console.
    Please advise.

    #187867

    In reply to: Installation

    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #187832
    aussiemike
    Participant

    Hello
    I am using the latest version of WP and bbPress with iThemese Builder theme.
    Through the theme functions I am able to show all parts of the forum on a particular theme layout, apart from the forum index page when the breadcrumb ‘forums’ link is clicked. This takes me back to the main template layout which does not have the forum wigdets as required on all forum pages.
    I also have the same issue with the search results.

    I have tried the following code but as I am not overly familiar with bbPress conditionals it does not solve the problem. I believe what I am look for is the correct information to go into this line:
    if ( is_bbpress() && in_category( ‘page’ ) )

    // create view for forums
    function custom_filter_category_layouts( $layout_id ) {
        if ( is_bbpress() && in_category( 'page' ) )
                return '599b46ad5fa63';
    
        return $layout_id;
    }
    add_filter( 'builder_filter_current_layout', 'custom_filter_category_layouts' );

    Any advice appreciated.

    Mike

    #187761
    Minnnnn
    Participant

    Hi there,

    Running the latest of everything here (as of 23/10/2017). I’ve noticed an unexpected behaviour on my Buddypress/bbPress site that is basically the behaviour outlined here 3+ years ago: https://bbpress.org/forums/topic/showing-buddypress-hidden-group-forums-to-group-members-on-bbpress-forum-index/

    When a group is hidden, and thus the forum connected to the group is hidden, on the forum index page:
    – Admins and keymasters can see all forums listed, including the hidden group forum (whether they are a member of that group or not).
    – Members who ARE members of the group can’t see the hidden forum on the forum index page. They have to go via Groups > select the group > Forum to see it.

    We’re running the Recent Topics widget, too, and I’ve noticed a similar thing happening here.
    – As an admin/keymaster, you can see all recent topics, including those posted to hidden forums (even when not a member of the group).
    – As a member of the group, you CAN’T see the recent topics from your group – UNLESS you are on the group’s forum page, then it shows them as expected.

    Is there something wrong in setup here, or is this as designed?
    It seems like it’d make sense for members of a group (regardless of roles elsewhere on the site) to see the forum on the forum index, and the updates in the Recent Topics widget.

    Thanks heaps!
    Min

    #187745
    Peetee
    Participant

    In addition to the my question above:

    It seems that I can log in with my mailadress instead of my username. I saw that the BBpress plugin has not been tested with WP version 4.8.2. Could this be the issue here?

    #187739
    richard.miller
    Participant

    I’ve created eight forums, and am in testing mode.

    In just ONE of these forums, my “participant” test user can’t see or create topics.

    I can’t see anything different about that forum at all.

    I’ve run the “repair forums” tools, no effect.

    Is this a known issue?

    WP 4.8.4
    BBPress 2.5.14
    http://www.fluentself.com/forums/

    #187716
    super powered
    Participant

    Relevant tag validation code for above since I had to write it for my project anyways:

    
    
    function new_reply_pre_set_terms_tag_test($terms, $topic_id, $reply_id)
    {
        //Bail Early if not set
        if(!$terms)
            return $terms;
    
        //Bail early if we are allowed to modify tags
        if(current_user_can( 'modify_topic_tags' ))
            return $terms;
    
        if(!is_array($terms))
            $terms = explode(', ', $terms);
    
        //For each to check if array term already exists. Remove if doesnt
        foreach ($terms as $tag => $tag_value):
            if(!term_exists($tag_value, 'topic-tag')):
                unset($terms[$tag]);
            endif;
        endforeach;
    
        return implode(', ', $terms);
    }
    
    function new_topic_pre_insert_tag_test($data)
    {
        //Bail Early
        if(!is_array($data) || !isset($data['tax_input']) || !isset($data['tax_input']['topic-tag']))
            return $data;
    
        //Bail early if we are allowed to modify tags
        if(current_user_can( 'modify_topic_tags' ))
            return $data;
    
        //Make sure we're an array
        if(!is_array($data['tax_input']['topic-tag']))
            $data['tax_input']['topic-tag'] = array($data['tax_input']['topic-tag']);
    
        //For each to check if array term already exists. Remove if doesnt
        foreach ($data['tax_input']['topic-tag'] as $tag => $tag_value):
            if(!term_exists($tag_value, 'topic-tag')):
                unset($data['tax_input']['topic-tag'][$tag]);
            endif;
        endforeach;
    
        return $data;
    }
    
    add_filter('bbp_new_reply_pre_set_terms','new_reply_pre_set_terms_tag_test', 22, 3);
    add_filter('bbp_edit_reply_pre_set_terms','new_reply_pre_set_terms_tag_test', 22, 3);
    add_filter('bbp_new_topic_pre_insert','new_topic_pre_insert_tag_test');
    
    
    #187698
    Peetee
    Participant

    Since this weekend I’ve been testing BBpress, trying to migrate an Invision 3.4.x forum through the BBpress importer. This is a forum with 38.000 members and 320.000 forum posts.

    Using the 2.5.14 BB importer version this did not go well: it would hang several times and stop at around 250.000 posts.

    Importing with version 2.6 RC3 went considerably better. Last night the complete forum was imported in 1 run! So that is really promising!!

    But as we do not know whether the 2.6 RC3 version is stable enough to keep using, and we do not know when the 2.6 final release would be released, one might consider to use the 2.6 version for import and then downgrade to the last stable version 2.5.14 for the time being.

    But the question is ofcourse: is this wise? And is this going to bring trouble? Who could advise me in this matter?

    Greetz,
    Peetee.

    #187679
    jerichox
    Participant

    I would like to add the Recent Topic Widget to the Footer of my page, however it does not match the format.. I have opened the widget.php file and found it but keep getting stuck on the code.. Any ideas/help?

    Below is the link.. I would like the recent topics to match the recent posts part of the footer..
    http://piw.ewarena.com/2017/10/another-news-test/

    #187671
    tmazawi
    Participant

    Hi
    I have a weird problem with bbpress
    most of the words in bbpress is not translated but some is
    like: Freshness is in english but the no topics is translated to arabic
    i have the latest version of bbpress
    i have configured wp_config.php to arabic
    and my default wordpress language is arabic
    also i double checked all the translation files in this directory
    –/wp-content/languages/bbpress
    and
    —/wp-content/languages/plugins/bbpress
    and still a lot of sentences is completely in english even though when i use the loco translation plugin and search for this words they show up translated just fine

Viewing 25 results - 2,051 through 2,075 (of 11,570 total)
Skip to toolbar