Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 12,276 through 12,300 (of 14,219 total)
  • @robin-w

    Moderator

    @ingenuity – thanks for posting that it will help anyone searching the forums at some future date 🙂

    @robin-w

    Moderator

    Always show lead Topic YES
    Shows the original post at the top of each page

    This is not a bbpress forum setting that I’ve seen, it is one added by a plugin? and where is it shown?

    @robin-w

    Moderator

    hmm, strongly suspect that the content block is your issue

    come back when you’ve tried a default theme, so we can concentrate on headway.

    I presume you’ve posted a query on their support forum as well?

    @robin-w

    Moderator

    great – glad you’re fixed

    @robin-w

    Moderator

    bbp_has_topics has a ‘reset’ in it, it executes

    new WP_Query( $r )
    

    what is the loop in your sidebar?

    @robin-w

    Moderator

    I can see lots of ‘?’ – is this your issue??

    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 twentytwelve, and see if this fixes.

    come back with the results !

    In reply to: login button size

    @robin-w

    Moderator

    no problem !

    @robin-w

    Moderator

    great – glad you’re fixed !

    @robin-w

    Moderator

    Lots you could choose from

    I like

    bbp last post – changes freshness to last posted date
    bbp private groups -sets up private groups
    bbp profile information – adds up top 4 fields to profile
    bbp topic count – displays topic and reply counts under the avatars

    (I would like the above, I wrote them !)

    as well as

    bbpress notify – advises admin of new posts
    bbpress WP tweaks – adds forum specific sidebar
    bbp signature – adds a signature box
    wp modal login – addas a modal login !

    @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 twentytwelve, and see if this fixes.

    @robin-w

    Moderator

    this box has 3 classes allocated

    #link-modal-title
    #link-selector
    #submitbox

    so something like

    #link-modal-title,
    #link-selector,
    #submitbox {
    Background #21201f !important ;
    }
    
    

    added to your style.css should fix it.

    Come back if that is not clear.

    @robin-w

    Moderator

    great – glad you’re fixed

    @robin-w

    Moderator

    Thats’ sort of what I’d expect, the content is private 🙂

    @robin-w

    Moderator

    Has this just started happening?

    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 twentytwelve, and see if this fixes.

    I suspect it is your theme, but carry out the tests above, and then come back !

    In reply to: login button size

    @robin-w

    Moderator

    the line for the button is

    <button type="submit" name="user-submit" id="user-submit" tabindex="<?php bbp_tab_index(); ?>" class="button submit user-submit"><?php _e( 'Log In', 'bbpress' ); ?></button>

    so class is “button submit user-submit”

    @robin-w

    Moderator

    No problem – glad you’re fixed !

    In reply to: New replies first

    @robin-w

    Moderator

    No sorry, the shortcode uses it’s own method, and without a re-write there’s no quick way to fix this.

    @robin-w

    Moderator

    Try (haven’t tested)

    function remove_website ($r) {
     $r['bbp_anonymous_website'] = false;
    return $r ;
     }
     add_filter( ‘bbp_pre_anonymous_post_author_website’, ‘remove_website’ );
    
    

    or

    function remove_website ($r) {
     $r['bbp_anonymous_website'] = false;
    return $r['bbp_anonymous_website'] ;
     }
     add_filter( ‘bbp_pre_anonymous_post_author_website’, ‘remove_website’ );
    
    

    @robin-w

    Moderator

    sorry, I completely misread what marximusmg was asking, and thought he wanted to replace the whole reply form area with a button that would fire up a reply area.

    Now I understand what marximusmg is after, the solution is

    add_filter( 'bbp_get_the_content', 'amend_reply', 10, 3);
    
    Function amend_reply ($output, $args, $post_content) {
    if ($args['context'] == 'reply' && $post_content == '') $output=str_replace('></textarea>', 'placeholder="Reply..." ></textarea>',$output) ;
    return $output ;
    }

    @robin-w

    Moderator

    Great – glad you’re fixed !

    @robin-w

    Moderator

    This should do it

    add_filter( 'bbp_get_breadcrumb', 'change_breadcrumb_text' );
    
    Function change_breadcrumb_text ($trail) {
    $trail = str_replace ('No Labels Community Forum','N L C F',$trail) ;
    return $trail ;
    }
    In reply to: Can not see forums

    @robin-w

    Moderator

    great – glad you’re fixed !

    @robin-w

    Moderator

    Can anyone explain how to best do this?

    I’m not sure that your approach is really a good one, or indeed how you would 301 each topic in a forum – sounds like a terrible headache.

    Why not just export/import using wordpress, and then point your forum menu item at the subdomains forum?

    @robin-w

    Moderator

    Not sure if this is a forum related question or breadcrumbs from your wordpress theme?

    Can you show
    What the title is
    What the permalink is
    what the breadcrumb says currently
    what you would like it to say

    @robin-w

    Moderator

    Not quite sure that this is forum related – but are you saying that scammers are successfully signing up despite the captcha?

Viewing 25 replies - 12,276 through 12,300 (of 14,219 total)