Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 3,001 through 3,025 (of 6,788 total)
  • Author
    Search Results
  • #148744

    In reply to: Content Not Showing

    Robin W
    Moderator

    did you install any other plugins in between?

    try

    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, switch to a default theme such as twentytwelve, and see if this fixes.

    I know you’ve done themes already, but you need to test if it works on a default theme with just twentyfourteen and the bbpress plugin. If it doesn’t then something in your site is screwed up 🙂

    #148736
    Robin W
    Moderator

    presume you removing the titles from

    wp-content/bbpress/templates/default/bbpress/loop-forums

    and renaming as per

    https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-3/ section 3

    then

    wp-content/bbpress/templates/default/bbpress/loop-single-forum

    has the content that you’ll want to take out

    #148715
    feb992
    Participant

    hello, I am using bbpress in my theme, I have diferents page themeplates, full-width, left-widget-colum…

    when I load the bbpress forum in a page, i select the full-width, and it works fine, but, when click in a sub-forum, it load the default page themplate (“left-widget-colum”)

    This is the link of the page wher the forum is:

    Complete User Integration

    This load in full width

    and when I click in the subforum, it redirect to:
    http://s454230239.mialojamiento.es/rideanddrift/?forum=test

    And this width the widget bar

    How can I modify this?

    Thanks

    #148695
    thecatholicwoman
    Participant

    I am not sure if this helps but when I select bbpress forum index template from the side menu for page templates it does not allow me to put in the side bar and runs full width but the text and coloring matches my theme. When I do it with the page builder in the divi theme and I use the [bbp-forum-index] short code in a text box element and then add a sidebar element on the side, I get the side bar but the forum does not match the theme because I have to use the default template. So it is almost like it is not pulling from the coding in the style.css at all so it may make sense that my altering that file does not change it.

    #148625

    In reply to: Resizing Avatars

    Rescue Themes
    Participant

    I was able to locate bbp_single_user_details_avatar_size in bbpress/templates/default/bbpress/user-details.php which eventually lead me to the following function that accomplishes what I needed (resizing the avatar):

    
    function my_bbp_change_avatar_size($author_avatar, $topic_id, $size) {
        $author_avatar = '';
        if ($size == 14) {
            $size = 24;
        }
        if ($size == 80) {
            $size = 110;
        }
        $topic_id = bbp_get_topic_id( $topic_id );
        if ( !empty( $topic_id ) ) {
            if ( !bbp_is_topic_anonymous( $topic_id ) ) {
                $author_avatar = get_avatar( bbp_get_topic_author_id( $topic_id ), $size );
            } else {
                $author_avatar = get_avatar( get_post_meta( $topic_id, '_bbp_anonymous_email', true ), $size );
            }
        }
        return $author_avatar;
    }
    
    /* Add priority (default=10) and number of arguments */
    add_filter('bbp_get_topic_author_avatar', 'my_bbp_change_avatar_size', 20, 3);
    add_filter('bbp_get_reply_author_avatar', 'my_bbp_change_avatar_size', 20, 3);
    add_filter('bbp_get_current_user_avatar', 'my_bbp_change_avatar_size', 20, 3);
    

    Increase avatar size in bbpress

    #148573
    chrissss
    Participant

    I narrowed it down to a conflict in /wp-content/plugins/bbpress/templates/default/js/editor.js. When i move this file or deactivate the editor toolbar in the bbpress settings, the gallerys work again.

    #148525

    In reply to: phpBB Import Error(s)

    Stephen Edgar
    Keymaster

    Forum import – The documentation states that stickies will not be imported, however I after doing the import I have around 20 ‘super-stickies’ which, looking at the old forum, are a mixture of announcements and stickies. I’d rather these weren’t converted to anything, and as far as I’m aware they shouldn’t be (https://bbpress.trac.wordpress.org/ticket/2126)

    The above ticket you reference was the ‘issue’ being created to track the changes and progress of implementing this feature.

    In comment 12 that is where the ticket was to updated to ‘fixed’ and ‘closed’ via changeset r5170. Trac can be a little daunting at first trying to understand everything that goes on in a ticket 😉

    With only your ~20 ‘stcikies’ it shouldn’t take more than a couple of minutes to ‘unstick’ the ones you do not want after your import has finished and the repair tools run.

    I have updated the docs to reflect that also https://codex.bbpress.org/import-forums/phpbb/

    Stickies – is there a way to ignore stickies during the import? They don’t appear to have come through correctly so it would be nice to simply ignore them (as was previously the case).

    How so, could you explaing that a little more please? Do the topics ‘look right’ and are just not ‘stuck’ or something else going on?

    User import – During the import, I (the main WordPress admin user) seem to have had quite a lot of forums, topics and replies linked to my user. I wasn’t a user on the previous phpBB forum at all so I’m not sure why I’ve adopted these posts. Or any posts for that matter.

    If there is a username match the importer will try to match the posts being imported with any current WordPress user, thus if phpBB has a user named ‘admin’ and you use the default the default WordPress username ‘admin’ that will be the cause.

    The best work around for this would be to rename the phpBB username in the database bvefore importing.

    Users – looking at the phpbb data, the amount of imported users seemed to match up, but I wonder if I’ve been assigned posts that were previously changed to the ‘Anonymous User’ that phpBB has at user ID 0… the amount of posts don’t seem to match up with that theory but a ‘majority’ of the posts that have been assigned to me seem to match the logic to an extent (ie, posts that have been moved into a ‘moderators only’ forum for further discussion about actions to be taken).

    You should notice that you now actually have a WordPress username ‘Anonymous’, so any ‘Anonymous’ posts should be attributed to that user.

    Your ‘moderators only’ forum after import you should change the bbPress forum permission to ‘hidden’ and that will make that forum the equiv bbPress ‘moderators only’ forum.

    Repair tools – All the repair tasks seem to work ok, except for two:
    – Recalculate the position of each reply
    – Remap existing users to default forum roles
    These two tasks end up white-screening with no status messages at all.

    What size is the phpBB database your importing? (Approx. Forums, Topics, Posts & Users please 🙂 )

    User Login Conversion – User logins are converted correctly when using the standard wordpress login screen but now when using my custom frontend ajax login – does anyone know if there’s a way to get that to work? A seperate topic has been started about that here: https://bbpress.org/forums/topic/user-login-authentication-migrated-phpbb-users/

    I’ve pretty much still got the same opinion as I wrote last night here.

    User Login – that’s correct – I’m just using the wp-signon method so I guess I’ll need to add some kind of do_action() call or something to trigger the conversion? If you can point me in the right direction, that would be great 🙂

    There is nothing to point you to sorry, when a user logs in for the first time after the import their legacy salt and hash password get’s converted to the native WordPress password format. Without knowing each legacy password their is no way to do this programmatically.

    bbPress’ login forms actually are hooked into the WordPress login forms, so theoretically it shouldn’t be too difficult for either the plugin you are using to add support for bbPress or possibly look for another similar plugin that already supports bbPress.

    Passwords and all their associated algorithms are hard and this an area where I just manage to skate by with the basics, actually doing any of what I mentioned in the previous paragraph is way beyond my skill level and pay grade 😉

    #148524
    Stephen Edgar
    Keymaster

    @fasttimes Do you have any custom phpBB custom mods installed that may change some things in the phpBB database? I just tested my phpBB imports and they all worked fine, no errors for ‘reply_to parents’. In fact phpBB does not have ‘threaded replies’ included by default thus the reason I ask.

    dzung
    Participant

    @leonyipa, thanks for that but I’ve done it already. “in bbPress setting, the default role is “Participant” I meant I set the auto default role to be Participant.

    So here are steps that I do:
    – In stall, WP and Go to Dashboard-Setting-General – Set New User Default Role to “Subcriber”
    – Install bbPress, go to Dashboard – Setting – Forums – Check the option for Auto Role and set it to “Participant”
    – On front end- I create an account for test!

    – In Dashboard – Users List: The Forum Role of the newly created user is “Participant” – The Site Role value is “Participant” which I expect should be “Subcriber”.

    If I un-check/disable the Auto Role in bbPress setting, then when someone create an account the Site Role value of that user would be “none” and the value for Forum Role would still be “Participant” – I don’t know what wrong!

    dzung
    Participant

    Hi,

    I have a site with bbPress intalled. I have set the New User Default role in Setting/General to a Custom Role that I made. in bbPress setting, the default role is “Participant”.

    The issue is when a new user created their Site role auto set to “Participant”. does anyone know, how to fix this so that new user will have site role as the value set in Setting/General?

    #148501
    Robin W
    Moderator

    probably a theme or plugin problem

    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, switch to a default theme such as twentytwelve, and see if this fixes.

    Robin W
    Moderator

    wordpress is post software and has posts and comments

    bbpress is forum software, so it has forums, topics and replies

    so people will reply to topics, not comment on them !

    so I would

    1. deactivate buddypress
    2. switch to a default theme such as twentytwelve and see if people can now reply to topics, you are only doing this to see if your theme has an issue with replies.
    3. let us know whether you are allowing anonymous posting, or whether you onlt want topics/replies from registered users?

    Also, how do I just let people see the topics and not the forum?

    umm, not sure what you mean, either you have a forum or your have posts and comments, you can’t have forum topics with post comments 🙂

    #148483
    Tom Dyer
    Participant

    Hi,

    After reading the importer
    I’ve recently migrated my phpBB forum to bbPress, but I have noted a few issues with the import/repair process. Does anybody have any suggestions as to what’s going wrong with any/all of these:

    Forum import – The documentation states that stickies will not be imported, however I after doing the import I have around 20 ‘super-stickies’ which, looking at the old forum, are a mixture of announcements and stickies. I’d rather these weren’t converted to anything, and as far as I’m aware they shouldn’t be (https://bbpress.trac.wordpress.org/ticket/2126)

    User import – During the import, I (the main WordPress admin user) seem to have had quite a lot of forums, topics and replies linked to my user. I wasn’t a user on the previous phpBB forum at all so I’m not sure why I’ve adopted these posts. Or any posts for that matter.

    Repair tools – All the repair tasks seem to work ok, except for two:
    – Recalculate the position of each reply
    – Remap existing users to default forum roles
    These two tasks end up white-screening with no status messages at all.

    User Login Conversion – User logins are converted correctly when using the standard wordpress login screen but now when using my custom frontend ajax login – does anyone know if there’s a way to get that to work? A seperate topic has been started about that here: http://bbpress.org/forums/topic/user-login-authentication-migrated-phpbb-users/

    Any advice on any of these steps would be very much appreciated.
    Thanks!

    #148481
    Stephen Edgar
    Keymaster

    Argh! I missed this original topic, sorry 🙁

    phpBB does not actually have ‘threaded replies’ so you should see something more laong the lines of ‘No reply to’s to convert’ it most certainly should not be failing at that 11th step.

    Nor should it be ‘white screening’ for either “Recalculate the position of each reply” or “Remap existing users to default forum roles” tasks.

    I’m done for the night (9:30pm Local Time) so I’ll take a closer look at this tomorrow 🙂

    #148479
    Tom Dyer
    Participant

    Did you manage to fix this? I’m experiencing the same issue I think.

    Also, I get errors when running two of the ‘Repair Forums’ tasks:
    – Recalculate the position of each reply
    – Remap existing users to default forum roles

    Both tasks end up white-screening on me 🙁 I wonder if the task errors are related to the forum import failing?

    #148473

    In reply to: bbPress Mods Wishlist

    Robin W
    Moderator

    bbpress has a number of templates which you can alter

    these are found in

    wp-content/plugins/bbpress/templates/default/bbpress

    Start with

    content-archive-forum.php

    this is the index page.

    you will see that it calls other templates

    eg

    <?php bbp_get_template_part( 'loop', 'forums' ); ?>

    which calls loop-forums.php

    a look through and you should be able to work out what most of it is doing.

    If you want to alter any of these, make a new directory in the root of your theme and copy any of these template files to it (only the ones you want to alter)

    so for instance if you wanted to alter content-archive-forum.php you’d create a copy to get
    wp-content/themes/%your-theme-name%/bbpress/content-archive-forum.php

    you can then alter these copies, and bbpress will use them instead

    They will also show you what css is being used, so that you can amend your style.css file with those that you want to change, or you can copy the whole bbpress style file viz https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-2/#5-copyingcreating-a-bbpress-stylesheet-in-your-child-theme

    at the finer level you may need to use something like firebug to work out how to say ‘bold’ the forums names to see what css each part is using, so that you can alter it.

    Firebug is downloaded to go with the Firefox browser. There are loads of firebug tutorials eg see

    #148462
    thecatholicwoman
    Participant

    Can you answer a quick question for me. I am using the simplr form plus plugin and I got all of the fields set and the default pages and custom welcome page complete. However the tiny mce icon to dump the registration form into the page is not showing up on my tool bar. Any idea why that might be? I know that this is not bbpress directly but I was wondering if you were by chance familiar with the plugin.

    #148392
    thecatholicwoman
    Participant

    @pinkishhue and @robin-w thanks so much. The topic pages should NOT look like that at all. I am not sure why they are defaulting to the forum index. I will try switching the theme and also deactivating all of the plug in and enabling them one by one. I do not know how to flush permalinks or any of that stuff. I am a complete newbie. I had to ask someone to add the theme into the css for me if that give you any clue. I will try these and get back if it does not work r to say thanks if it does. This is a free site and I am just trying to figure out how to get this done without much experience so this means the world to me.

    #148391
    Robin W
    Moderator

    As @pinkishhue suggests, try

    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, switch to a default theme such as twentytwelve, and see if this fixes.

    this should get you to a working platform from which you can work out where the issue lies.

    #148387
    PinkishHue
    Participant

    Have you tried switching to the WordPress default theme (or another basic theme)? This will tell you if it’s a theme problem or something else.

    It seems like it may be a CSS issue.

    #148381

    In reply to: Forum index

    Robkk
    Moderator

    okay what they did was register a menu which is a whole lot easier

    so first put this in your functions.php if you have a child theme

    function register_menu() {
    	register_nav_menu('bbmenu', __('bbpress Forum Menu'));
    }
    add_action('init', 'register_menu');
         		

    and now put this above <?php do_action( 'bbp_template_before_forums_loop' ); ?>
    which is inside loop-forums.php inside the bbpress default templates

    <nav id="subnav" role="navigation">
    
    <?php
    if ( has_nav_menu( 'bbmenu' ) ) { /* if menu location 'bbmenu' exists then use custom menu */
          wp_nav_menu( array( 'theme_location' => 'bbmenu') ); 
    }
    ?>
    
    </nav>

    now put this in your custom css or plugin

    #subnav {
    	background: none;
    	clear: both;
    	display: block;
    	float: left;
    	margin: 0 auto 6px;
    	width: 100%;
    }
    
    #subnav ul {
    	font-size: 13px;
    	list-style: none;
    	margin: 0;
    }
    
    #subnav li {
    list-style-type: none;
    display: inline-block;
    margin: 6px 4px;
    }
    
    #subnav a {
    text-decoration: none;
    color: #555;
    background: #ddd;
    padding: 2px 8px;
    border: 1px solid #e4e4e4;
    }
    
    #subnav li a:hover {
    background: #333;
    color: #fff;
    border-color: transparent;
    text-shadow: none;
    }

    tell me if you come into any problems , so i can see if i hadd a problem copy and pasting

    #148373
    Robin W
    Moderator

    Ok, thanks and yes we can fix that.

    1. the code is missing ‘);’ by mistake, it should read

    function mycustom_breadcrumb_options() {
        // Home - default = true
        $args['include_home']    = false;
        // Forum root - default = true
        $args['include_root']    = false;
        // Current - default = true
        $args['include_current'] = true;
     
        return $args;
    }
     
    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options');
    

    The extra ‘);’ is right at the end

    I’ve fixed the documentation

    2. as stated in https://codex.bbpress.org/functions-files-and-child-themes-explained/

    you should not be adding code to the end of a main theme’s functions, but should be creating child theme. By all means leave it there and test that it works, but then create a child theme and move it there or you risk losing the change on an update. I’ll try and make this even clearer in the documentation – it is a first version !

    Hope that helps you, and please come back with any further issues ! 🙂

    #148372
    greenhoe
    Participant

    I installed bbpress on my site and it is running the default theme currently I”m going to create my own theme over the next few days but I was wondering how do I enable bbpress breadcrumbs? You can see from http://hearthstoneplayers.com/forums/ that no breadcrumbs are showing, is there a setting I need to turn on? Also I use Yoast breadcrumbs from Yoast SEO plugin could that effect the bbpress breadcrumbs?

    #148371
    K-Path
    Participant

    I was told that I could either make the breadcrumbs go away completely or modify them. I chose to modify the appearance of the “crumbs of bread”. The following code was offered to me as a possible solution to my desire to modify my breadcrumbs . . .

    Layout and functionality – Examples you can use

    function mycustom_breadcrumb_options() {
        // Home - default = true
        $args['include_home']    = false;
        // Forum root - default = true
        $args['include_root']    = false;
        // Current - default = true
        $args['include_current'] = true;
     
        return $args;
    }
     
    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options'

    When inserted at the end of TwentyTen Theme’s functions.php’s code as was instructed in this document . . .

    Functions files and child themes – explained !

    The result was this message in black against a white screen . . .
    Parse error: syntax error, unexpected end of file in /home/sylviannai/public_html/journal/wp-content/themes/twentyten/functions.php on line 568

    Is found at the root of my forums . . .
    http://hcrd.foundation/journal/forums/

    So what I’m asking is there additional code or an error in the code as that last line suggests.

    Thank you for reading and please, please help. I’m losing my mind on this project and I didn’t have that many marbles to play with before I started in the first place.

    Auriel

    #148361
    Stephen Edgar
    Keymaster

    Is this http://www.dexterindustries.com/forum/?reply=2027 the actual permalink from the email, with your permalink setup (which I think is ‘default’) I would have expected the url in the email to be http://www.dexterindustries.com/forum/?topic=install-sh-error/#post-2027

    Your currently using the Twenty Fourteen theme so do the emailed links work correctly with this theme?

Viewing 25 results - 3,001 through 3,025 (of 6,788 total)
Skip to toolbar