Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 12,301 through 12,325 (of 14,233 total)
  • @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?

    @robin-w

    Moderator

    The way profiles are shown requires some coding – would a menu item do you?

    Layout and functionality – Examples you can use

    @robin-w

    Moderator

    Kevin,

    How I hate the toolbar – it should only be seen by admins

    add the following code into your functions file

    add_filter('show_admin_bar', '__return_false');
    

    Functions files and child themes – explained !

    In reply to: Comments on Topics?

    @robin-w

    Moderator

    If you have askimet installed, then this will trap these.

    In reply to: Broken Breadcrumbs

    @robin-w

    Moderator

    ok, if you still have a problem after bytes for all have looked at it, come back

    In reply to: Broken Breadcrumbs

    @robin-w

    Moderator

    Don’t panic !!

    Mthod 2 is producing an excerpt of the page, which is being caused by the template it is using.

    I’ll come back later and help you further !

    In reply to: Broken Breadcrumbs

    @robin-w

    Moderator

    ok, I’d try two things

    1. use method 2

    2. switch to a default theme for a moment to see if this is a theme problem

    @robin-w

    Moderator

    Can I export the entire site from inside the backend as a superadmin? Or do I need phpMyAdmin to do it?

    I’d use phpmyadmin, rather than wp import/export, as the you know you’ve got everything

    This is my first time with a forum, and I have been warned that nothing has been updated in a REALLY long time.

    what version of bbpress is it running?

    My biggest concern is the privacy – I am assuming that the forum settings are set to private?

    once you got it in, you cam make it private quite easily if it isn’t already. Private forums are hidden from you unless you are logged in.

    @robin-w

    Moderator

    ok, lets work this through

    You say you’re a superadmin – does this mean its a multi-site installation? they’re not my forte, but if this is just a single site then….

    First of all bbpress is a plugin, so you’ll still need wordpress (and it holds the users), and since the existing theme has all the styling that you users are used to, then it would be sensible to use that as well.

    So in effect what you need to do is just import a full copy of the installation, and then take out the pages and posts, and you have a forum without the rest of the site !

    Since you have a test site, then follow the guidance in

    https://codex.bbpress.org/creating-a-test-site/

    and then just go into posts and pages to delete those (apart from the forum page), and amend the custom menu if you have one.

    In reply to: Cannot set user roles

    @robin-w

    Moderator

    Not sure why you would be getting this, 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.

    In reply to: Comments on Topics?

    @robin-w

    Moderator

    I can’t tell from your link what the issue is – do you mean commented as with a post, or they have created a forum reply and if so which one?

    In reply to: Broken Breadcrumbs

    @robin-w

    Moderator

    Without further info from you, have you tried

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

Viewing 25 replies - 12,301 through 12,325 (of 14,233 total)