Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 12,101 through 12,125 (of 14,232 total)
  • @robin-w

    Moderator

    You’ll need to refer this to the theme authors as it’s a paid theme, so we can’t load it and look at what it’s doing.

    @robin-w

    Moderator

    Possibly lots of things.

    I appreciate that you English may not be good, but can you explain in more detail what you are trying to do?

    Also

    1. php won’t work in a page without a plugin
    2. there is no shortcode display_forum
    2. normally you’d use

    [bbp-single-forum id=$forum_id]

    in a page and in php you’d use

    echo do_shortcode( ‘[bbp-single-forum id forum id =ā€5ā€]‘ );

    In reply to: Hueman theme issue

    @robin-w

    Moderator

    @robin-w

    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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

    ok, some themes don’t like this way to display.

    so I try

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

    look at item 3 and try method 2.

    If that doesn’t work then come back

    @robin-w

    Moderator

    ok, than, I now understand.

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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.

    Then come back and tell us where the issue is

    @robin-w

    Moderator

    no need to pay , just have a link to

    http://loser2winner.com/topics/

    In reply to: 404 on Edit my post

    @robin-w

    Moderator

    ok, when you hover on the edit, you should see the destination url that it is going to on the bottom of the screen, how does this differ from the one in the backend?

    In reply to: 404 on Edit my post

    @robin-w

    Moderator

    hmm…you have loads of topics, has this just started happening? and if so when?

    @robin-w

    Moderator

    something has changed !

    Have you added any functions, or might be a plugin

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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.

    Otherwise try adding this at the bottom of your functions file

    function change_reply_order() {
    $args['order'] = 'ASC';
     return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
    
    In reply to: 404 on Edit my post

    @robin-w

    Moderator

    I can se all that forum fine.

    so you are only getting a 404 error when you edit a reply, topics are fine. Is this just in the front end, or editing a reply in the toolbar as well?

    In reply to: disable Sidebar

    @robin-w

    Moderator

    i managed to have the index full width by making my own page with the forum shortcode and page set using full width layout. but once i click anywhere on the forum (go to a section, thread) the sidebar re appears.

    That’s because it’s going back to the bbpress.php which isn’t working for you.

    try replacing

    if (have_posts()) : while (have_posts()) : the_post();
    
                    /**
    
                     * Find the post formatting for the pages in the post-page.php file
    
                     */
    
                    get_template_part('post', 'page');
    
                    
    
                    if(comments_open( get_the_ID() ))  {
    
                        comments_template('', true); 
    
                    }
    
                endwhile;
    

    with

    
    
    while( have_posts() ): the_post(); 
    
    	 the_content(); 
    
     endwhile; 
    
    

    in your bbpress.php file

    In reply to: disable Sidebar

    @robin-w

    Moderator

    try logging out and in again

    In reply to: Blank page

    @robin-w

    Moderator

    yep, all working for me !

    In reply to: Custom Query Loop

    @robin-w

    Moderator

    check out this reference (bbp_has_topics passes the info to wp_query)

    https://codex.wordpress.org/Class_Reference/WP_Query

    about two thirds of the way down (and it’s a long way down!) you’ll find date parameters and examples

    In reply to: Blank page

    @robin-w

    Moderator

    Spam deleted !

    are you using any caching software?

    @robin-w

    Moderator

    sorry, I simply don’t understand what issue you are describing, please give a more detaled explanation and a link to an example on your site

    In reply to: 404 on Edit my post

    @robin-w

    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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

    sorry I’ve read this twice, and I do appreciate that you’ve tried to give us lots of good info (unlike many posters!), but I don’t know what your actual issue is.

    Can you describe in one sentence what is/is not happening and what you would expect.

    In reply to: New to bbPress

    @robin-w

    Moderator

    look at the step by step guides in the documentation

    Codex

    @robin-w

    Moderator

    I want the forum menu link to be visible but nothing else, no forum titles/topics etc simply a login panel and a message explaining that the forum is for members only.

    ok, put the following in your functions file

    //Stop non-logged in user seeing the forums and show forum login page instead

    function lab_logged_in_bbptopics($have_posts){
    	if (!is_user_logged_in()){
    		header("Location: /forum-login/");
    		exit ;
    		}
    return $have_posts;
    }
    add_filter('bbp_has_topics', 'lab_logged_in_bbptopics');
    add_filter('bbp_has_forums', 'lab_logged_in_bbptopics');
    add_filter('bbp_has_replies', 'lab_logged_in_bbptopics');
    

    The create a page called ‘forum login’ and ensure the permalink is set to ‘forum-login’. You can actually use any name or permalinl, but the permalink has to match the one in line 3 above.

    into that page you can put something like

    You must be both registered AND a member of the club to use the forums.
    
    If you are not a member, why not <a href="/join-us/"> Join the club </a>
    
    Otherwise please login in
    
    [bbp-login]
    
    

    Then create a ‘join-us’ page that they can go to.

    If I disable the toolbar in this way, will I need a plugin to allow users to make basic changes to their profile in an environment that is consistent with the front end of the website?

    There are several ways to get an edit profile – this one adds it to your custom menu if they are logged in

    Layout and functionality – Examples you can use

    @robin-w

    Moderator

    I’m not a lawyer, and the law is of course different depending on where the world you are.

    In reply to: Forum not showing up

    @robin-w

    Moderator

    how did you put the link in – are you in visual or text mode? and what exactly did you put in?

    @robin-w

    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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

    yes I believe it will be fixed in wordpress 4.0.1 (it was a wordpress change), but no idea when that is coming out

Viewing 25 replies - 12,101 through 12,125 (of 14,232 total)