Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 13,776 through 13,800 (of 14,231 total)
  • In reply to: How to users LOGOUT?

    @robin-w

    Moderator

    In fact just done it

    Layout and functionality – Examples you can use

    item 12

    have a look

    @robin-w

    Moderator

    would require some rewrites of templates.

    How into coding are you?

    @robin-w

    Moderator

    couldn’t where ‘dashcamtest.de’ was in your example.

    The code is in loop-single-reply, which should show the title using line 22

    @robin-w

    Moderator

    That’s the way it works at the moment – it annoys me as well

    You could use the plugin

    WP Modal Login

    This has a modal (popup) login that is happy for you to get it wrong.

    It has a widget that you can use. it’s not a pretty in the widebar as the bbpress one, but smarter when it’s launched.

    I have just started using this linked to a menu item, will be documenting how to do the latter when I get a moment.

    @robin-w

    Moderator

    speed wise – this executes as fast as any other menu command on my websites

    which menu do you want it to appear on, and is it a custom menu?

    @robin-w

    Moderator

    do_action( ‘bbp_template_before_forums_loop’ );
    does nothing !

    It is the hook onto which you would add an action using a function and an “add_action” command.

    If you want to alter behaviour, the it is probably the function after it that you would want to filter.

    Come back and describe what you’re trying to achieve and I’ll try and help further

    @robin-w

    Moderator

    You should be looking at the bbpress.css

    Suggest you look for Topic and reply content and look at padding

    @robin-w

    Moderator

    Is this a new installation, or has this just started on an old one.

    Try disabling all other plugins, and seeing if that fixes it. If so then re-add back one at a time to see which is causing.

    If none, the switch to a default theme such as twentytwelve and see if it still occurs

    Come back and let us know the results

    @robin-w

    Moderator

    Try

    Step by step guide to setting up a bbPress forum – part 4

    The actions are used in the templates held in

    wp-content/plugins/bbpress/templates/default/bbpress/

    In reply to: How to users LOGOUT?

    @robin-w

    Moderator

    There’s some code in the documentation to add a Login/Logout to the menu

    see

    Layout and functionality – Examples you can use

    item 11.

    I am documenting a ‘modal’ (popup) login to add in a few days.

    In reply to: How can I Delete topic

    @robin-w

    Moderator

    You could make one, but if you have the correct privileges you have options in the header of each topic including “trash” which will put it in the trash.

    You can also do this from the Dashboard>forums>topics (or replies) and permanently delete it from there

    In reply to: How to filter an array

    @robin-w

    Moderator

    Thanks Stephen

    @robin-w

    Moderator

    Think you probably need to crack open the plugin, and see where GD bbPress Attachments is adding a filter, and exactly what code it is using. You might then be able to mod this in your loop to re-strip it out.

    @robin-w

    Moderator

    yes it’s always awkward when even two things don’t work together and both say it’s the other one.

    In practice there well maybe no “fault”. If X chooses a hammer and nail to join two bits of wood, and Y chooses a screw and screwdriver, it is neither’s fault that the screwdriver won’t remove the nail, and X can say that Y should have used a hammer, and Y can say that X should have used a screw !

    I may not be able to help, but can you post a link to your url and a sample, and I’ll take a look

    @robin-w

    Moderator

    No problem. Just a quick thought, as I might be able to solve it a different way.

    Are you using a page called forums and the shortcode [bbp-forum-index]

    or did it just come sup in your menu when you installed it?

    It’s Ok, neither is wrong, I just need to know which !

    ie which in section 3 of the attached did you do

    Step by step guide to setting up a bbPress forum – Part 1

    @robin-w

    Moderator

    The page you are using to display is a full width page.

    Since you are using a child theme of twenty twelve, I presume you still have the default template which has a sidebar.

    If so, then copy this file, and rename it to bbpress.php and put it into your theme’s root ie
    wp-content/themes/twentytwelve-Child/bbpress.php

    That will ensure that bbPress uses a template with a sidebar

    @robin-w

    Moderator

    great, glad you’re fixed !

    @robin-w

    Moderator

    suspect that there is a variable in loop-sinlge-reply that already exists, but is not there in loop posts, so you’re getting a nil return.

    I’d try hardcoding some to see if you can pinpoint.

    eg look up a bbp post and see who the author is, so if post is 1126 then try

    <?php bbp_author_link( array( ‘post_id’ => 1126, ‘size’ => 14 ) ); ?>

    and see if that produces a result.

    Or you could try

    echo “bbp_get_topic_last_active_id() is “. bbp_get_topic_last_active_id() ;

    to see what number that is producing at that point to know that it is doing something

    if so, then you can try

    @robin-w

    Moderator

    Not really sure what to suggest next!

    @robin-w

    Moderator

    @netweb Stephen, Thanks for this, and having now looked at the trac ticket and bbp_parse_args function I see how this works.


    @nicmare

    Wherever you see bbp_parse_args, there’s a filter for the function to do this.

    bbp_parse_args has the format

    function bbp_parse_args( $args, $defaults = array(), $filter_key = '' )
    

    The resultant filter name is made up of bbp_before_’ . $filter_key . ‘_parse_args’

    (there is an bbp_after one as well!)

    The filter key is the third argument in the bbp_parse_args

    $r = bbp_parse_args( $args, array(
    		'before'            => '<ul class="bbp-forums-list">',
    		'after'             => '</ul>',
    		'link_before'       => '',
    		'link_after'        => '',
    		'count_before'      => '<span>',
    		'count_after'       => '</span>',
    		'count_sep'         => '</span><span>',
    		'separator'         => '',
    		'forum_id'          => '',
    		'show_topic_count'  => true,
    		'show_reply_count'  => true,
    	), 'list_forums' );

    so ‘list_fourms’ in the last line is the third argument.

    This should help you for the other two functions, as filters will then be obvious !

    @robin-w

    Moderator

    I’ll let you know if it gets changed.

    Were the other two functions as bad?

    @robin-w

    Moderator

    Hey great, glad you’re fixed !

    @robin-w

    Moderator

    Ok, I’ve had a think, and another look.

    There is no easy way to do less than you’ve done.

    The problem is that by the time the “apply filters” has been applied, the $output variable has already been created using the input variables, so changing $r is too late.

    What this function needs is an earlier apply filters called say ‘bbp_list_forums_args’ for the $r variable, the you could add a simple filter along the lines of

    function hide_forum_counts ($r) {
    $r['show_topic_count'] = false ;
    $r['show_reply_count'] = false ;
    $r['separator']  = ' ';
    return $r ;
    }
    add_filter('bbp_list_forums_args','hide_forum_counts') ;
    

    I’ve have suggested this is a trac ticket

    @robin-w

    Moderator

    Thanks Stephen – I have added this list to the Codex step by step instructions, so I won’t forget it again !

    @robin-w

    Moderator

    You say you are using the widget

    So you see the username, password and submit boxes in the sidebar – yes?

    when I click mine, I see no change in the url, and just go back to te screen when it has logged me on.

    Are you seeing a wp-login url ?

Viewing 25 replies - 13,776 through 13,800 (of 14,231 total)