Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 851 through 875 (of 11,571 total)
  • Author
    Search Results
  • vincenzon617
    Participant

    Hi I have been testing my site and noticed that when a user is subscribed to a topic and then they go to reply to that topic again they are automatically unsubcribed after they submit their reply. Anyone got any ideas why this is happening?

    #219541
    Robin W
    Moderator

    untested, but this should work

    add_filter ('bbp_before_get_topic_subscribe_link_parse_args' , 'change_subscribe') ;
    
    function change_subscribe ($args) {
    	$args['subscribe'] = 'Watch' ;
    	$args['unsubscribe'] = 'Unwatch' ;
    return $args ;
    }

    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

    #219448
    Ricsca2
    Participant

    on the test site the button is visible while on the main site it is not.
    I noticed however that as you select any box, the button is no longer clickable.
    Tomorrow I will email you your access data.
    thank you very much for your availability

    https://im4.ezgif.com/tmp/ezgif-4-663356364675.gif

    #219435

    In reply to: Forum Not showing

    Dave Stevens
    Participant

    The website is live, but the forum is not yet being used.

    I tested it with Twenty-Twenty and Twenty-Nineteen get the same results. I am using the Kadence theme and have used it in the past with BBPress.

    If you go to one of the forums it shows up. But if you try and view all of them they don’t show up.

    https://prnt.sc/10tn6lc

    #219404
    Robin W
    Moderator

    I’d suspect that your theme has had an update then.

    As this is a paid theme, I’d suggest you raise it with the theme authors first.

    If you want to check you can

    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

    #219365

    In reply to: Forum Not showing

    Robin W
    Moderator

    just given screenshots, impossible to help

    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

    #219357
    Robin W
    Moderator

    this (untested) should work

    add_filter ('bbp_after_get_the_content_parse_args', 'change_rows') ;
    
    function change_rows ($args) {
    	if ($args['context'] == 'reply' ) {
    		$args['textarea_rows'] = '6' ;
    	}
    return $args ;
    }

    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

    #219309
    Robin W
    Moderator

    @supermagicien – thanks so much for posting back, it is always good to get feedback and updates !

    Really glad you are now working on the latest bbpress šŸ™‚

    #219307
    supermagicien
    Participant

    Good evening Robin,

    I come to give some (good) news.

    I recently cleaned up and removed a plugin that was out of date, so I was able to upgrade to the latest version of BBPRESS without any problems this time.

    One problem that was persisting was posts and new topics disappearing, then thanks to you I understood that they were awaiting moderation, but I was not satisfied, I did not want to do moderation and let people post, I followed the advice of this topic: https://bbpress.org/forums/topic/random-replies-being-marked-pending/

    and now everything seems to work. šŸ‘

    #219250
    Robin W
    Moderator

    if you’ve cloned the forum widget, you can set a class – the test is

    if ( bbp_is_forum_closed(forum_id)) ...

    and

    if ( bbp_is_topic_closed (topic_id)) ...

    #219249

    In reply to: BBP_Forums_Widget bug

    Robin W
    Moderator

    interesting..it looks ok on my test site, but I can see it doesn’t on yours.

    I should state that I am just a bbpress user who helps out here, not the plugin author.

    2 choices

    1. amend the actual widget file – yes that is said by many to be bad practice, but bbpress does not do frequent releases, and if it is your site and you know what you changed, is probably the quickest and easiest answer

    2. clone the widget to your theme’s child functions file. so take the whole function that starts

    class BBP_Forums_Widget extends WP_Widget {

    Now you’ll need to rename it, so change BBP_Forums_Widget wherever quoted to something unique, and change names/title in these lines

    
    public function __construct() {
    		$widget_ops = apply_filters( 'bbp_forums_widget_options', array(
    			'classname'                   => 'widget_display_forums',
    			'description'                 => esc_html__( 'A list of forums with an option to set the parent.', 'bbpress' ),
    			'customize_selective_refresh' => true
    		) );
    
    		parent::__construct( false, esc_html__( '(bbPress) Forums List', 'bbpress' ), $widget_ops );
    	}
    
    	/**
    	 * Register the widget
    	 *
    	 * @since 2.0.0 bbPress (r3389)
    	 */
    	public static function register_widget() {
    		register_widget( 'BBP_Forums_Widget' );
    	}

    you can then amend the offending line.

    #219248
    Robin W
    Moderator

    I’m pretty sure that the link in the ‘latest activity’ widget in my style pack takes you to the reply

    bbp style pack

    once activated you’ll find a latest activity widget with lots of settings you can use.

    #219226
    Robin W
    Moderator

    bbpress only uses wordpress login, so doesn;t change anything in this area

    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

    #219170
    Robin W
    Moderator

    OK, so tested in my test site

    User with subscriber and participant access creates a reply

    the goes in and edits reply

    reply is still seen

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

    sasasasaaa
    Participant

    Hello,

    I would like to have a text break on .bbp-author-name especially mobile devices.

    I use latest version bbpress and wordpress.

    Can you help?

    Thanks Silke

    #219028
    ritishsharma
    Participant

    I’m using bbpress for the first time to create a general discussion page. Therefore, before launching it publically I myself created a forum and one topic inside that forum for a testing purpose.
    But I see that the topic count of that forum showing zero even though I created one topic by myself.

    Although the topic is showing fine when I open the forum, it isn’t counting it on the forum index page.

    Is there anything I’m doing wrong?, or Is it an issue with bbpress?

    #219023

    In reply to: Topics not showing

    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

    #219014
    hype123
    Participant

    Hello,

    I have the latest version of WordPress and BBPress installed on my website but for some reason the topics aren’t showing and it’s just a blank page when you click on General Discussion.

    Does anyone know how to fix this?

    URL: https://www.motorhype.co.uk/forum/

    Thanks in advance

    #219009

    In reply to: Introducing Flutterum

    Billy Wilcosky
    Participant

    The next version is ready. As you’ll read above originally I was going to rely on a plugin for the main menu. I realized that’s silly and added a built in simple responsive menu to the latest version (v1.1.1).

    Also, I’ve decided that the theme will actually be called “Rain” and not “Flutterum.” Because I could create other themes in the future, all under the Flutterum umbrella.

    Hopefully the free “Rain” theme will be in the WordPress Themes repository soon. Until then, you can download it at Flutterum.

    #218953
    phpnukes
    Participant

    I’m using the latest WordPress and installed the latest BBpress.

    Installed fine but can the life of me work out what is the URL link to access BBpress within WordPress as a user. http://www.domain.com/forums ?

    Very simple question why is this not mentioned in the installation notes.

    #218920
    Robin W
    Moderator

    hmmm…

    Titles are not put in that part as default – bbpress uses the theme/page to do that, so I would not expect to see an <h2> tag after the <div id="bbpress-forums" class="bbpress-wrapper">

    do you have a theme or plugin that is altering bbpress display?

    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

    #218918
    Robin W
    Moderator

    it shows fine in my test site

    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

    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

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

Viewing 25 results - 851 through 875 (of 11,571 total)
Skip to toolbar