Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 10,976 through 11,000 (of 14,333 total)
  • @robin-w

    Moderator

    bit of a difference between

    and wanted it removed completely

    and

    I merely want to move it.

    🙂

    but it doesn’t seem as if that’s possible.

    um, yes it is, you just hadn’t asked !

    just use

    <?php bbp_breadcrumb(); ?>

    in the code

    there are many template files that use this

    just look in

    templates\default\bbpress\

    and you’ll find all the templates

    tell us where you want it, and we’ll try to help further

    @robin-w

    Moderator

    We’d need a link to your site to fix those

    In reply to: Setup problems

    @robin-w

    Moderator

    @robin-w

    Moderator

    yes take out the line

    <?php get_sidebar(); ?>

    about 5 line sup from the bottom.

    BUT you need this to be a bbpress.php file in the right directory as per and don’t delete the page.php file – that runs the rest of your site !

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

    @robin-w

    Moderator

    thanks Rob ! Far better at css than me !

    @robin-w

    Moderator

    Maybe you can tell me how im gonna remove that “Archive” from the title bar its weird it is using Archive as title for site

    I can’t see where that is – can you post a url to a page with an example

    In reply to: Setup problems

    @robin-w

    Moderator

    ok,

    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

    @robin-w

    Moderator

    ok, Rob’s the css guru, but why not try my plugin

    https://wordpress.org/plugins/bbp-style-pack/

    which will let you style the hyperlinks (no. 5 in forum index styling)

    Otherwise come back and we’ll help further

    @robin-w

    Moderator

    No problem, glad I could help !

    In reply to: Setup problems

    @robin-w

    Moderator

    ok, welcome, and don’t be daunted !

    Does the forum become visible if you log in – I know that’s not what you want, but it tells me some stuff I can ignore in helping you.

    @robin-w

    Moderator

    no a single flat structure of hundreds of forums would be fine, the only reason I can see for nesting them would from an admin perspective, and you seem to already appreciate that aspect and are happy with it.

    @robin-w

    Moderator

    yes that’s possible, but can you giv e us a link to your site and a page and tell us exactly where within that page you would like it?

    @robin-w

    Moderator

    I have one single user who is unable to post anything at all

    sorry, can you define what you mean by this eg she can’t login in or she doesn’t get the topic/reply form, or she can’t fill it in, or she can fill it in but it doesn’t send etc.

    Also have you looked in the backend to see if the topics/replies are there?

    @robin-w

    Moderator

    @robin-w

    Moderator

    Any replies with silly css hacks will be ignored

    not sure that attacking potential helpers is the best way to get a response. Using hide in css is a perfectly acceptable way of achieving things even if you think it silly. I prefer non css solutions purely because my css is rubbish 🙂

    Anyway in the documentation you will find

    Layout and functionality – Examples you can use

    enjoy !

    @robin-w

    Moderator

    I see no front end forum

    1. do you see it all in the backend?
    2. what exactly have you set up to enable you seeing them in the front end, and exactly what are you seeing when you try to access the front end?

    @robin-w

    Moderator

    I think your theme is causing this. Unfortunately many theme authors wrap the various sidebar options into one page.php file nowadays. It gives theme flexibility, but doesn’t help andyone with custom post types such as bbpress. I’ve taken a look and try amending the bbpress.php to

    <?php 
    global $is_tf_blog_page,$post;
    $id_post = $post->ID; 
    if(tfuse_options('blog_page') != 0 && $id_post == tfuse_options('blog_page')) $is_tf_blog_page = true;
    get_header();
    if ($is_tf_blog_page) die(); 
    ?>
    <?php $sidebar_position = tfuse_sidebar_position(); ?>
    <?php tfuse_shortcode_content('before');?>
    <div class="main-row content-row">
        <div class="container">
             <div class="middle-main content-full">
                     <div id="primary" class="content-area">
                            <div class="inner">
                                <article class="post post-details">
                                    <?php if(!tfuse_page_options('hide_title')):?>
                                        <header class="entry-header">
                                            <h1 class="entry-title"><?php echo get_the_title();?></h1>
                                        </header>
                                    <?php endif;?>
                                    <div class="entry-content">
                                        <?php  while ( have_posts() ) : the_post();?>
                                            <?php the_content(); ?>
                                        <?php break; endwhile; // end of the loop. ?>
                                    </div>
                                </article>
                                <?php if ( comments_open() ) : ?>
                                    <?php tfuse_comments(); ?>
                                <?php endif;?>
                            </div>
                        </div>
                               
        </div>
    </div>
    <?php tfuse_shortcode_content('after'); ?>
    <?php get_footer();?>

    which takes out all the stuff relating to sidebars.

    Come back if that doesn’t work or errors

    @robin-w

    Moderator

    Nothing seems to have changed on the site

    you may need to close down your browser and re-open it – many browsers don’t refresh css when the page is refreshed, so closing/re-opening is the best solution.

    Otherwise it should take immediate effect

    @robin-w

    Moderator

    great – we’re here to help !

    @robin-w

    Moderator

    good set of questions!

    bbpress uses WordPress registration for forum users, so they will integrate nicely.

    There are widgets within bboress that allow for login and registration

    With forums set to public, then anyone can see forums, but only logged in users can ‘participate’

    Users can change their email in the profile section

    two queries

    5. Once registered, every time the user visits again login will be required to participate in the forums.

    This will be the case, unless they use the remember me function, but in effect that is the same as it is a logged in person. There are plugins to prevent remember me if you want to disable eg
    https://wordpress.org/plugins/remember-me-controls/

    7. The user will have to be allowed to unsubscribe.

    They cannot delete themselves, they can just stop using. They can of course send the admin a request to be deleted, and then the admin has the choice of deleting all content for that user, assigning it to someone else, or just blocking that user so that the content remains under their name.

    In reply to: Can I do this?

    @robin-w

    Moderator

    @ebunny3k maybe fair comment, but not sure why you’re lurking on here if you feel that bbpress is such a bad product 🙂

    @robin-w

    Moderator

    that’s not standard bbpress behaviour – breadcrumbs just navigate within the same window.

    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

    @robin-w

    Moderator

    can you carry out the steps in

    Before Posting

    then come back

    @robin-w

    Moderator

    great – glad you’re fixed !

    In reply to: Forum migration help

    @robin-w

    Moderator

    great – hopefully a later version of bbpress will fix this

Viewing 25 replies - 10,976 through 11,000 (of 14,333 total)