Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 12,001 through 12,025 (of 14,141 total)
  • @robin-w

    Moderator

    Great – glad you’re fixed !!

    @robin-w

    Moderator

    you won’t be changing subscriber – that is a wordpress role – bbpress has it’s own roles, and probably that is participant.

    I’m sure you can , but haven’t tried so don’t have code offhand.

    Suggest you just create a new custom role, and then set your bbpress user to it.

    @robin-w

    Moderator

    ok, well without spending hours recreating your issue, I’d suggest you try

    <?php
     $idbbp = get_post_meta($post->ID, 'idbbp', true);
     $forum_id = bbpress()->current_forum_id = $idbbp;
    $x='[bbp-single-forum id forum id ="'.$forum_id.'"]‘ ;
     echo do_shortcode( $x);
    
    

    @robin-w

    Moderator

    I think you found a topic on an issue – since it didn’t fix it, suggest it is not relevant.

    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

    see

    https://codex.bbpress.org/bbpress-user-roles-and-capabilities/

    and you’ll see a capability for a user to close their own topics.

    you need to either amend the participant role, or create a new role with this capability

    see https://codex.bbpress.org/custom-capabilities/

    @robin-w

    Moderator

    If it’s just a ‘Read this before you post’, then just create the topic, and then in

    dashboard>topics>all topics and edit the topic you want, then under topic attributes on the right hand side, change from open to closed.

    If you make this a ‘super sticky ‘ under types in the same box, you only need create this topic once, and it will appear at the start of every forum.

    @robin-w

    Moderator

    sorry but what is the ‘page comment form ‘, where on ‘each page’ are you putting the code, and what is ‘each page’

    I am trying to hep you, but you do need to do a detailed response so that I can help.

    For instance

    ” I go into dashboard and select forums and then edit the xx forum and change the content from … to….”

    or

    ‘I edit the page.php file and in line xxx I add YYY’

    @robin-w

    Moderator

    Can it be installed on a club website for “members only” to view the whole bbPress section?
    • Can you set up different forums to be only accessed/viewable to certain members?

    https://wordpress.org/plugins/bbp-private-groups/

    • Can it host pictures?

    Usually people use

    https://wordpress.org/plugins/gd-bbpress-attachments/

    @robin-w

    Moderator

    i have created custom role’s (parent and teacher)

    How have you done this – using a plugin or by coding?

    set dynamic role for bbpress forum itself

    Layout and functionality – Examples you can use

    @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?

Viewing 25 replies - 12,001 through 12,025 (of 14,141 total)