Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 7,751 through 7,775 (of 14,141 total)
  • @robin-w

    Moderator

    your theme is doing this, but I can’t say why.

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    sorry, I have been tied up elsewhere, I will try and return to this in the next few days, but family business is keeping me away

    In reply to: New Topic Button ?

    @robin-w

    Moderator

    sorry, best I can do – you could always crack the plugin open and work out where the code is that does this

    In reply to: New Topic Button ?

    @robin-w

    Moderator

    easiest way is using my plugin

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>buttons

    @robin-w

    Moderator

    ok, the best I can suggest is that you create a test site where you can try a different theme to eliminate

    Creating a Test Site

    @robin-w

    Moderator

    can you post the entire template for me please, and tell me which template it is replacing

    @robin-w

    Moderator

    I know you have done plugins in turn, but all at once ? – usual advice is

    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

    @robin-w

    Moderator

    ok, quick debug of the function, so this won’t error (and will hopefully work!)

    function rew_filter_for_user ($args) {
     //not sure if the next two lines are needed, so have commented out
     //global $current_user;
     //get_currentuserinfo();
     $uid = bbp_get_current_user_id();
     $args[‘author’] = $uid ;
     return $args ;
    }
    

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    can you define ‘cannot create a new forum’

    what precise steps do you take, and what exactly happens

    @robin-w

    Moderator

    registration is a wordpress thing, rather than bbpress.

    what is set is
    dashboard>settings>general>email address
    and does it match your email server?
    1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address in wordpress settings>general is fred@gmail.comthen it is likely that messages will be dumped in transit. You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
    2. Just bbpress?
    Then you need to see if this is wordpress wide or just bbpress.
    Try https://wordpress.org/plugins/check-email/

    @robin-w

    Moderator

    untested but try

    <?php add_filter ('bbp_before_has_replies_parse_args' , 'rew_filter_for_user' ) ; ?>
        <?php bbp_get_template_part( 'pagination', 'replies' ); ?>
        <?php bbp_get_template_part( 'loop', 'replies' ); ?>
        <?php bbp_get_template_part( 'pagination', 'replies' ); ?>

    and in your functions file put

    function rew_filter_for_user ($args) {
    //not sure if the next two lines are needed, so have commented out
    //global $current_user;
    //get_currentuserinfo();
    $uid = bbp_get_current_user_id();
    $args[‘author’] => $uid ;
    return $args

    }

    loop-replies from memory has the ‘no relies’ part in it, so you shouldn’t need the ‘if’ statement
    I’m really pushed at the moment hence no time to test, but if it doesn’t work come back, and if I get time I’ll load it to my test site and debug

    In reply to: Disable Comments

    @robin-w

    Moderator

    I’ve never had an issue with automatic spam, so I would not bother – you can always implement it later if needed.

    @robin-w

    Moderator

    glad to have helped 🙂

    In reply to: Disable Comments

    @robin-w

    Moderator

    disallowing comments does not affect topics and replies – it is how I set my websites

    @robin-w

    Moderator

    now available in my style pack plugin

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display and set in item 11

    @robin-w

    Moderator

    add this to your functions file

    add_filter ('bbp_before_has_forums_parse_args', 'rew_number_of_forums') ;
    
    function rew_number_of_forums ($args) {
    	$args['posts_per_page'] = 50 ;
    return $args ;
    }

    I’ll add it to my style pack plugin shortly if you don’t know how to do that

    @robin-w

    Moderator

    that is a buddypress error, report it to their support site

    https://buddypress.org/support/

    In reply to: 404 Erros acces

    @robin-w

    Moderator

    great – glad you are fixed

    In reply to: 404 Erros acces

    @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

    @robin-w

    Moderator

    contact me via my website

    Contact me

    @robin-w

    Moderator

    I tried enabling the “Alternate Forum template 1” in bbp style plugin.. but didn’t work.

    That is possibly because your theme is overriding my templates.

    Have you been to

    dashboard>settings>bbp style pack>Topic/Not Working?

    @robin-w

    Moderator

    I’ve just added that capability to my style pack

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Rely Styling

    and check item 16

    @robin-w

    Moderator

    should be there

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

    2. https://wordpress.org/plugins/bbp-style-pack/

Viewing 25 replies - 7,751 through 7,775 (of 14,141 total)