Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 8,826 through 8,850 (of 14,219 total)
  • @robin-w

    Moderator

    Is this going to conflict with some of the bbPress swnippets I have already implemented. I.e. Login/logout redirection, etc. Or will it conflict with UAM for access to forums.

    no idea – you’ll need to test this đŸ™‚

    @robin-w

    Moderator

    can only give you the area for html

    so two files

    wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php
    wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Make a copy of the two files above, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/bbpress/form-topic.php
    and
    wp-content/themes/%your-theme-name%/bbpress/bbpress/form-reply.php

    bbPress will now use this template instead of the original
    and you can amend this

    Suggest your html/php needs to replace

    <?php bbp_the_content( array( 'context' => 'reply' ) ); ?>

    but you’ll need to work out exactly how yourself !!

    In the spirit of sharing stuff, if you work it out, please post the solution to this thread !!

    @robin-w

    Moderator

    install my private groups plugin and enable topic permissions

    Private groups

    @robin-w

    Moderator

    good glad you are fixed !

    @robin-w

    Moderator

    no problem – glad you are fixed !!

    @robin-w

    Moderator

    Suspect you are using php 7.1
    so 3 fixes
    1. downgrade to a lesser version of php
    2. upgrade to bbpress 2.6rc3
    3. in bbpress 2.5.13 in includes/forums/functions.php
    change line 1851 from
    $meta_query = $posts_query->get( ‘meta_query’ );
    to
    $meta_query = $posts_query->get( ‘meta_query’, array() );
    and change line 1796 from
    $post_stati = $posts_query->get( ‘post_status’ );

    to

    $post_stati = $posts_query->get( ‘post_status’ );
    if (!is_array($post_stati)){
    $post_stati = array($post_stati);
    }

    In reply to: User functionality

    @robin-w

    Moderator

    that’s sort of how it works now.

    just set

    dashboard>settsings>forums to give the participant role to new users

    and set your forums as public.

    In reply to: Create main menu

    @robin-w

    Moderator

    This is a theme rather than bbpress question.

    you need to work out how to get your theme to display a menu and then create link items in that menu

    @robin-w

    Moderator

    great – glad you are fixed !!

    @robin-w

    Moderator

    easiest way I can think of is to set the permalink of a page to the same as the forums slug, and then just have text in this to explain how to access the forums.

    @robin-w

    Moderator

    @robin-w

    Moderator

    you need to allow it

    dashboard>settings>general>anyone can register

    @robin-w

    Moderator

    no problem, glad you are fixed !!

    @robin-w

    Moderator

    so you want you to be able to create topics and replies, but your users to just read?

    @robin-w

    Moderator

    so who do you want to see the forum page – just you?, just registered users or who?

    @robin-w

    Moderator

    ahh!!

    7.1 has some issues with bbpress (or visa versa)

    so 3 fixes
    1. downgrade to a lesser version of php
    2. upgrade to bbpress 2.6rc3
    3. in bbpress 2.5.13 in includes/forums/functions.php
    change line 1851 from
    $meta_query = $posts_query->get( ‘meta_query’ );
    to
    $meta_query = $posts_query->get( ‘meta_query’, array() );
    and change line 1796 from
    $post_stati = $posts_query->get( 'post_status' );

    to

    $post_stati = $posts_query->get( ‘post_status’ ); 
    if (!is_array($post_stati)){
                                                 $post_stati = array($post_stati);
    }

    @robin-w

    Moderator

    ok, can I have a link to the working site?

    @robin-w

    Moderator

    ok, you have two choices

    either use the default wordpress lost password and register

    http://mysite.com/wp-login.php?action=lostpassword
    http://mysite.com/wp-login.php?action=register

    obviously changing the ‘mysite.com’ to your sites name

    or create pages within your site and use the bbpress shortcodes
    and then reference the page url

    eg create a page called ‘password’ and have it’s permalink as say ‘password’ and put
    [bbp-login] as the page content (you can precede this with any text you like, or have text after) eg

    Lost you password?- enter your email and we'll send a new one straight to you
    [bbp-login]

    Then in the widget you would put

    http://mysite.com/password/
    

    you can do the same with [bbp-register] to display the register screen.

    @robin-w

    Moderator

    can you check what versions of php each is using.

    If you can’t immediately tell from your host details, this plugin will add it to the dashboard

    Display PHP Version

    @robin-w

    Moderator

    ok, you’ll need to do some elimination

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

    Then come back

    @robin-w

    Moderator

    @cocktail5555

    so you dev site is working finem, but the live site isn’t – correct?

    Is the dev site a local installation?

    @robin-w

    Moderator

    @daltmc

    Try

    dashboard>settings>permalinks

    and just click save
    this resets the permalinks, and sometimes gets sites going

    In reply to: Blank Pages

    @robin-w

    Moderator

    Also, when clicking on a forum from the forum index on the frontend, I get a blank page:
    http://hatchnutrition.com/forum/

    that works fine – do you still have a problem?

    @robin-w

    Moderator

    I am sure you know, there are plugins that do that for the WordPress comments, so that even commenters who do not have a WordPress account on that site can check a box to receive email alerts of new comments.

    wasn’t aware of that.

    I don’t know of any plugin that does this for bbpress.

    @robin-w

    Moderator

    presume you are fixed as it looks left aligned – if not please give us a link to a specific example and state which element

Viewing 25 replies - 8,826 through 8,850 (of 14,219 total)