Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 8,801 through 8,825 (of 14,144 total)
  • In reply to: How to add a sidebar

    @robin-w

    Moderator

    looks like you’ve succeeded – do you still need help?

    @robin-w

    Moderator

    looks like you’ve succeeded – do you still need help?

    In reply to: Crash Victim

    @robin-w

    Moderator

    you will need to define what ‘all things have failed.’ means

    Is you site at all accessible?

    In reply to: Avatar freshness

    @robin-w

    Moderator

    no, normal behaviour is to both show the avatar and have a link that is clickable and goes to profile.

    you definitely have something affecting this

    are you certain that you have tested with a vanilla theme and no other plugins?

    @robin-w

    Moderator

    good point !

    I’ve just released bbp style pack version 3.6.0

    bbp style pack

    if you go into

    dashboard>settings>bbp style pack>forum dispay and check item 5 Add “Create New Topic” link O(and change text if you wish)

    it will add a link at the top and a form at the bottom.

    Sorry – about to go on holiday so haven’t time to style this as a button !

    @robin-w

    Moderator

    This is probably a bit circular ie if you don’t show forums with no content, then no-one will know they exist to create content on them, so they will always not show !!

    If you intend to create content later on, then just make them hidden and only admins and moderators will see them, and then change to public when you are ready.

    If I have misunderstood, come back and explain more about what you are trying to achieve

    In reply to: Avatar freshness

    @robin-w

    Moderator

    ok, I can’t see why on a default theme with no other plugins it should not work.

    I am currently suspecting wplms is turning it off.

    In any event, clicking the freshness profile just goes to the home page, so something is affecting your site.

    @robin-w

    Moderator

    looks like an issue with the plugin bbp-messages rather than bbpress.

    Probably that you had that plugin active without bbpress being active at a guess

    @robin-w

    Moderator

    if you giuve me an example of a bbpress one I’ll chase this down

    @robin-w

    Moderator

    the register one comes from wordpress, and this may help that issue

    http://www.wpbeginner.com/plugins/how-to-send-a-custom-welcome-email-to-new-users-in-wordpress/

    In reply to: Can not open Forum

    @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

    In reply to: Can not open Forum

    @robin-w

    Moderator

    ok, if you go into

    dashboard>users>all users

    and under the heading ‘Users’ you’ll see things like

    All (19) | Administrator (20) etc.

    Look for ‘keymaster’ and click this and check that the profile you are using is listed here. Only keymasters get to see forums.

    @robin-w

    Moderator

    not sure if this does that

    GD Topic Polls – New plugin for bbPress on WordPress.org

    if not would be worth contacting the author to see if he would add it

    In reply to: Can not open Forum

    @robin-w

    Moderator

    @mouslat – can you confirm that all is ok apart from you not seeing ‘forum’ in dashboard. You can see ‘topics’ and ‘replies’ in dashboard – yes ?

    In reply to: PHP 7.1 Fatal Error

    @robin-w

    Moderator

    try

    in bbpress 2.5.12 change line 1800 from

    if ( empty( $post_stati ) ) {
                $post_stati = (array) bbp_get_public_status_id();

    @robin-w

    Moderator

    bbpress has separate roles, so if for the wordpress roles you set the user to ‘no role for this site’ and for bbpress you set as say ‘participant’ then it should work, but you will need to test as I don’t know your site’s exact configuration

    In reply to: Avatar freshness

    @robin-w

    Moderator

    ok, without a link to a live site, not sure I can help further

    In reply to: Iimprovements

    @robin-w

    Moderator

    ok, without a link to a live site, not sure I can help further

    @robin-w

    Moderator

    1.

    I’m wanting to move the Edit/Move/Split/Post bar down

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
    bbPress will now use this template instead of the original
    and you can amend this

    then around line 29

    <?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
    
    		<?php bbp_reply_admin_links(); ?>
    
    		<?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>

    this is the bit you are wanting to move.

    2.

    Is there a way to have the join date underneath their photo beside the post?

    yes it can be done, but would need some coding.

    Same template, around line 57 you’ll find

    <?php do_action( 'bbp_theme_after_reply_author_details' ); ?>

    That’s where you want to add the join date, either as a hook to the action above, or as additional code.

    I suspect you’ll want to pick up the date from the wp_posts table user_registered field.

    using bbp_get_reply_author_id() should get you the user, and

    https://codex.wordpress.org/Function_Reference/get_userdata

    should give you how to use it, with say

    <?php $user_info = get_userdata(bbp_get_reply_author_id() );
          $registered = $user_info->user_registered;
          echo $registered?>

    probably being close to what you want, but you’ll probably need to do some date stuff to display how you want

    https://www.w3schools.com/php/php_ref_date.asp but possibly a strtotime() function

    Hopefully that’s enough to get you somewhere !!

    @robin-w

    Moderator

    user fixed it by disabling an authorisation plugin

    @robin-w

    Moderator

    your login requires an authorisation code, which if you get it wrong is taking you to google.

    the logon is part of wrodpress, not bbpress, but I guess that you have a plugin that is doing this authorisation, and that’s where you need to look

    @robin-w

    Moderator

    bbpress comes with a number of converters.

    Once bbpress is installed go to

    tools>forums>import forums and follow the screen.

    @robin-w

    Moderator

    I don’t know what happened

    it’s a computer – we’ll never understand them !!

    great – glad you are fixed !!

    @robin-w

    Moderator

    possibly

    div#wp-bbp_reply_content-editor-tools {
        display: none;
    }
    

    in the custom CSS section of your theme

    @robin-w

    Moderator

    no problem – glad you are fixed !

Viewing 25 replies - 8,801 through 8,825 (of 14,144 total)