Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 401 through 425 (of 11,523 total)
  • Author
    Search Results
  • #232442
    Robin W
    Moderator

    I need to logout as admin to then see if solves the issue

    in which case you will need to not use the health check plugin and actually deactivate the plugins

    if you open two sessions of your browser by opening one and then clicking ‘shift’ and open again, it will open two browsers, so one can be logged in as admin and the other not.

    you can then test to see what is causing the login issue

    #232440
    Robin W
    Moderator

    I was going to say, do you think it could be because the bbpress plugin has only been tested up to wordpress version 5.9.5 and I am using 6.0.3?

    bbpress works fine with 6.0.3

    #232437
    ianhaneybs
    Participant

    Thank you, I’ll try the health check plugin.

    I was going to say, do you think it could be because the bbpress plugin has only been tested up to wordpress version 5.9.5 and I am using 6.0.3?

    #232435
    Robin W
    Moderator

    ok, suspect that the membership plugin or another plugin is affecting that.

    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

    #232385
    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

    #232384
    medtone
    Participant

    Hi,
    for some reason the search bar doe’s not visible in my forum pages.
    For example:
    reshetlacanianit.co.il/?forum=test-forum
    On Settings> Forums> Search, the “Allow forum wide search” is checked.
    Any Idea how to make the search bar available?

    #232357
    Tom Ingalls
    Participant

    I’m been exploring different view shortcodes but I can’t make it seems to work.

    I wanted to display both latest topics and most popular topics at the same time in the home page.

    I use [bbp-display-topic-index show=’5′ forum =’10,11,12′] or [bbp-single-view id=’popular’] and [bbp-single-view] but only one view is showing up.

    #232348

    In reply to: No pagination controls

    Robin W
    Moderator

    I’m not a bbpress author, just someone who helps out here. I can’t remember fully, but I have it in the back of my mind that there is an issue with that many forums, but don’t have time to set up 79 test forums to find out what it was.

    Then simplest solution would be to amend the page to show all the forums

    install

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display

    and set item 11

    Nowarah
    Participant

    I tested it and it doesn’t do anything when use sign up form, just refreshing!

    #232290

    In reply to: Remove Separator

    Robin W
    Moderator

    ah, found the function that the ajax call is doing.

    this code works on my test site

    function remove_sep ($args) {
    $args['before'] = '  ' ;
    return $args ;
    }
    
    add_filter ('bbp_before_get_topic_subscribe_link_parse_args', 'remove_sep') ;
    
    remove_action( 'bbp_ajax_subscription', array( 'BBP_Default', 'ajax_subscription' ) );
    
    add_action ( 'bbp_ajax_subscription', 'new_ajax_subscription');
    
    function new_ajax_subscription() {
    
    		// Bail if subscriptions are not active
    		if ( ! bbp_is_subscriptions_active() ) {
    			bbp_ajax_response( false, esc_html__( 'Subscriptions are no longer active.', 'bbpress' ), 300 );
    		}
    
    		// Bail if user is not logged in
    		if ( ! is_user_logged_in() ) {
    			bbp_ajax_response( false, esc_html__( 'Please login to subscribe.', 'bbpress' ), 301 );
    		}
    
    		// Get user and topic data
    		$user_id = bbp_get_current_user_id();
    		$id      = ! empty( $_POST['id']   ) ? intval( $_POST['id'] )         : 0;
    		$type    = ! empty( $_POST['type'] ) ? sanitize_key( $_POST['type'] ) : 'post';
    
    		// Bail if user cannot add favorites for this user
    		if ( ! current_user_can( 'edit_user', $user_id ) ) {
    			bbp_ajax_response( false, esc_html__( 'You do not have permission to do this.', 'bbpress' ), 302 );
    		}
    
    		// Get the object
    		if ( 'post' === $type ) {
    			$object = get_post( $id );
    		}
    
    		// Bail if topic cannot be found
    		if ( empty( $object ) ) {
    			bbp_ajax_response( false, esc_html__( 'Subscription failed.', 'bbpress' ), 303 );
    		}
    
    		// Bail if user did not take this action
    		if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'toggle-subscription_' . $object->ID ) ) {
    			bbp_ajax_response( false, esc_html__( 'Are you sure you meant to do that?', 'bbpress' ), 304 );
    		}
    
    		// Take action
    		$status = bbp_is_user_subscribed( $user_id, $object->ID )
    			? bbp_remove_user_subscription( $user_id, $object->ID )
    			:    bbp_add_user_subscription( $user_id, $object->ID );
    
    		// Bail if action failed
    		if ( empty( $status ) ) {
    			bbp_ajax_response( false, esc_html__( 'The request was unsuccessful. Please try again.', 'bbpress' ), 305 );
    		}
    
    		// Put subscription attributes in convenient array
    		$attrs = array(
    			'object_id'   => $object->ID,
    			'object_type' => $type,
    			'user_id'     => $user_id
    		);
    
    		// Add separator to topic if favorites is active
    		if ( ( 'post' === $type ) && ( bbp_get_topic_post_type() === get_post_type( $object ) ) && bbp_is_favorites_active() ) {
    			$attrs['before'] = '  ';
    		}
    
    		// Action succeeded
    		bbp_ajax_response( true, bbp_get_user_subscribe_link( $attrs, $user_id, false ), 200 );
    }
    #232206
    Robin W
    Moderator

    no, I need to see what is being downloaded to your browser.

    alternately :

    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

    Robin W
    Moderator

    the only bbpress related settings are the ones I quoted above.

    on my test site

    dashboard>settings>forums>forum user slugs>topics started

    changes the topics list view.

    so if I amend this to ‘dicsussions’ then domain.com/discussions/ works.

    #232111

    In reply to: Topic Title

    Sandeep Negi
    Participant

    gooooo totall get down bb presss its testig ………..

    #232079

    In reply to: Forum has blank pages

    seangowans
    Participant

    Hey Robin,

    Sorry I forgot to mention that i’m trying to get this working on a custom theme, I was only testing on the 2022 theme as a last effort just to see if I could get the forum working.

    I tried installing “bbp style pack” to my custom theme and there was no tab called “Enable Theme Support”

    Any thoughts on what might be wrong with my custom theme?

    Thanks again

    #232057
    ahsa
    Participant

    At a guess, I’d say that bbPress, like WordPress, uses oEmbed to embed media. WP maintains a list of oEmbed providers whose URLs will automatically be converted to media embeds. The URL in your screenshot looks like it’s a custom CDN hosting an mp4 file, which likely can’t be converted this way. To test this, try using a YouTube video’s URL instead. You may use WPTrains forum to understand further.

    #232055
    seangowans
    Participant

    Im using BBpress Version 2.6.9 and WordPress version: 5.9.3 and i’m working on my localhost.
    I have followed the documentation (method 2) and I keep ending up with the same issue. The Forum page has the [bbp-forum-index] shortcode which works fine, but when I click on the forum I created it returns a blank page.

    URL structure that returns blank page:
    mysite/forums/forum/test-forum/

    I have removed every plugin except BBPress and tested this on the 2022 WordPress theme and still no luck, any advice you could give me would be greatly appreciated.

    #232017
    erossini
    Participant

    In my WordPress website, I added bbPress. When you are in the forum in the section _Support_ and you open a topic, you see this

    In my point of view, the user experience is not great because the user doesn’t know where he or she is. I like to add a full breadcrumb like

    > Forum > Support > Test video

    How can I add this?

    #231994
    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

    #231933
    Robin W
    Moderator

    1 & 2

    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

    3. bbpress follows the rules in dashboard>settings>discussion

    #231847
    Mike Witt
    Participant

    I tried the code on a test site and it appeared to work.
    I updated the Track ticket.

    #231686

    Topic: Divi Builder

    in forum Troubleshooting
    areynoldsskm
    Participant

    I’ve seen a few references to this issue, but seems noone was able to find, or at least post a solution, we’re having issues with divi theme on the archive pages with bbPress, latest WP/BBP/Divi versions with the theme builder, header and footer works on all pages, but the user profile, the other search archives for bbpress, all show a huge margin at the top then messed up formatting.

    Was anyone able to rectify this? Divi’s developers blame bbPress and say to consult here.

    Similar threads:

    Divi Builder Header not loading on search pages

    Not working with Divi Theme

    #231651
    koogle
    Participant

    So latest wordpress and bbpress forum..

    nothing worked when I tried to import SMF database..

    So I then created a mybb forum and used there importer, which after charset issues, imported the SMF forum stuff fine..

    so now back to bbpress, to import from mybb, and still nothing.. it starts and does nothing else just like before with it trying to import from the smf db..

    all the options are correct ie db name/pass/port etc… I don’t get it, it says nothing as to why its not processing anything, just stuck at first step doing nothing.

    Is this importer even working?

    #231631
    Amber
    Participant

    Hey there! For some reason my team is no longer getting the auto generated emails when someone has posted in the forum. I ran a test and nothing went through.

    Also on my side bar – I do not have the option for the forum, only topics and replies.

    Any advice?

    #231611
    bestow78
    Participant

    How i can integrate bbpress on my current Online side hustle where people can discuss latest trends of online earning and share there thoughts as well.
    Is there any guide on this?

    #231033
    yourpagetoday
    Participant

    I have no idea how to get the forums to display at all, what am I doing wrong?????? http://www.test.yourpreviewtoday.com/forums/forum/test-forum1/
    Nothing shows …I checked the settings so many times whats going on??????? Someone please help

Viewing 25 results - 401 through 425 (of 11,523 total)
Skip to toolbar