Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 8,951 through 8,975 (of 14,282 total)
  • @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 !

    @robin-w

    Moderator

    If you are happy for them to access the dashboard backend forums, topics and replies, then just make them worpdress editor, and bbpress keymaster. If you don’t want them to have backend forums, just topics and replies – then make them worpdress editor, and bbpress moderator

    In reply to: bbPress (Replies)

    @robin-w

    Moderator

    fairly major bit of work.

    If you were talking about participants, my private groups plugin has the ability to restrict users down to just posting topics, so you could set up a forum where only topics can be posted.

    Private groups

    But making this a visitor only is an entirely different ballgame.

    @robin-w

    Moderator

    ok, not sure I can help then, sounds like ultimate member is showing it by mistake

    In reply to: Profile pic bug?

    @robin-w

    Moderator

    Not sure where it is set in your theme, I see the resultant output in a browser inspector.

    If you theme has a custom css area, then put the above in there and play with the settings

    If you don’t then there are several custom css plugins (google) or my style pack plugin has a custom css tab

    bbp style pack

    you may need to put !important after a setting to get it to take eg

    img {
    height: 28px;
    min-width: 0;
    width: 100px !important;
    }

    @robin-w

    Moderator

    the template for forum is

    templates/default/content-archive-forum.php

    make a copy to your child theme directory under a directory called bbpress.

    @robin-w

    Moderator

    presuming that 367 is your forum number, then that should be ok

    if it is not displaying 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

    both those methods should work.

    when you say you are using the shortcode – exactly what have you got on that page?

    @robin-w

    Moderator

    If you mean like above, then put this into your css

    blockquote::before {
         content: none !important;
        }
    In reply to: Profile pic bug?

    @robin-w

    Moderator

    in your css you have

    img {
    height: 28px;
    min-width: 0;
    width: 175px;
    }

    which is determining this display

    @robin-w

    Moderator

    if it could already be done within bbpress, I wouldn’t need to put it in my plugin!!

    @robin-w

    Moderator

    my style pack plugin has this feature, along with loads more.

    bbp style pack

    dashboard>settings>bbp style pack>topic/reply form item 6

    In reply to: Limit in sign ups

    @robin-w

    Moderator

    if you mean registrations, then no limitations to both.

Viewing 25 replies - 8,951 through 8,975 (of 14,282 total)