Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 2,476 through 2,500 (of 6,788 total)
  • Author
    Search Results
  • #159232

    In reply to: Topics do now show

    Robin W
    Moderator

    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

    #159215
    Robkk
    Moderator

    common issue with yoast breadcrumbs.

    /**
     * Filter to call default bbPress breadcrumbs
     */
    add_filter( 'bbp_get_breadcrumb', 'myfix_bbp_get_breadcrumb', 1, 3 );
    function myfix_bbp_get_breadcrumb($trail, $crumbs, $r){
            // This will remove wordpress-seo filter to disable bbPress breadcrums by default
            remove_all_filters("bbp_get_breadcrumb",10);
            return $trail;
    }

    use this to enable bbPress breadcrumbs

    #159206
    Robin W
    Moderator

    hmmm… something is changing that

    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

    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

    Chad R. Schulz
    Participant

    I actually came up with an in-elegant solution using css.

    select#bbp_forum_id, [for="bbp_forum_id"] {display: none;}

    Participants are only able to edit posts for 5 minutes–per the default setting. I just prefer that all the backend stuff remain backend stuff.

    If anyone has a more elegant solution (one that avoids the needless database querying for ALL the exiting forums/categories for every topic edit) please let me know.

    Thanks again, Chad

    #159150
    s1r0n
    Participant

    Can somebody point me in the direction of how to get the cool site widgets we see on these forums, like forum info, tags, feeds. slick forum list and etc. i don’t see these widgets as part of the default bbpress

    #159141
    Marion Peterson
    Participant

    Unfortunately, deactivating all plugins did not help. I did not test a default theme.

    If I create a child theme and install the bbpress codes, will I still potentially have a problems with this, or will this no longer be an issue then?

    #159078

    In reply to: Add Custom User Roles

    Alice Kaye
    Participant

    Update – I managed to get it to work and managed to change the name of the defaults, to make things easier.

    This is the code in case anyone needs it for reference in the future:

    /* bbPress Custom Roles */
    function add_custom_role( $bbp_roles ) {
     
    $bbp_roles['bbp_craftsman'] = array(
    'name' => 'Craftsman',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    $bbp_roles['bbp_journeyman'] = array(
    'name' => 'Journeyman',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    $bbp_roles['bbp_adept'] = array(
    'name' => 'Adept',
    'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
    );
    $bbp_roles['bbp_artisan'] = array(
    'name' => 'Artisan',
    'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) // the same capabilities as moderator
    );
    return $bbp_roles;
    }
    add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
    /* bbPress Custom Roles */
    
    /* bbPress Custom Role Names */
    add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' );
    
    function ntwb_bbpress_custom_role_names() {
    	return array(
    
    		// Keymaster - Advisor
    		bbp_get_keymaster_role() => array(
    			'name'         => 'Advisor',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
    		),
    
    		// Moderator - Moderator
    		bbp_get_moderator_role() => array(
    			'name'         => 'Councilman',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
    		),
    
    		// Participant - Apprentice
    		bbp_get_participant_role() => array(
    			'name'         => 'Apprentice',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
    		),
    	);
    }
    /* bbPress Custom Role Names */
    #159057
    peter-hamilton
    Participant

    3. Buddypress allows more member profile functions, group creation with private forums and a facebook style activity wall, this is all added by Buddypress to the already existing forum only functions from BBpress.

    They integrat by following the steps offered after instal, I always instal BBPress first.

    If you want you can have a look a my site how they work together, I believe they should always be used in tandem.

    Buddy/BB/Wordpress

    4. If you create the categories and the forums, then members can only post topics in forums on hose categories by default.

    2. You can change that text in form-reply.php, which means you need to make a bbpress template folder in your child theme.

    1. I wish it was true.

    Hope this helps.

    Peter Hamilton

    #159042
    zanderlise
    Participant

    Created a sidebar with wwPress WP Tweaks, but can’t get it to display. I have added widgets, and tried selecting all the different pages in the “Default forum wrapper” section. It just won’t show up.

    WP version 4.1.1
    http://www.testambrosemediastore.com/forums/forum/forum-2/
    Minamaze theme

    In this theme, you have to select one layout for all static pages, and I have chosen a layout that is full page. You don’t get Template options while creating/editing a page. Is that causing the issue? It seems all of the other “sidebar” plugins I’ve tried simply replace an existing sidebar, they won’t add one. Is “bbPress WP Tweaks” the same, or can you add a sidebar to the forum page even if it doesn’t have a sidebar originally?

    Any help would be appreciated!

    Thanks!

    #159039
    Robin W
    Moderator

    ok,

    1. not possible with bbpress as far as I know
    2. only admin/keymasters get this priviledge
    3. https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
    4. If I understand the question correctly, normal users – that is the default ie participants can create topics and replies, but not forums or categories. If you meant something different then come back

    #159032

    In reply to: Log In

    Robin W
    Moderator

    if they then decide to use the forum it appears that they must register again.

    not sure where you are getting that from.

    If you set the default role in settings>forums, then on registration they will get that rile when they log in.

    #159009
    Robkk
    Moderator

    troubleshoot to find if you can pinpoint the problem.

    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.

    #158999

    In reply to: Reply cannot be empty

    Robkk
    Moderator

    @pgmvanrijn

    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.

    kiwi3685
    Participant

    Thanks. Nice to at least get a response, so your thoughts are appreciated.

    However, the ticket you refer to is closed. The file in latest bbPress download matches the final version (smf3.php) available there, so I’m sure it’s reasonable to assume the code is the latest available.

    But while waiting for some help I did some further digging in my smf database. I found one user with an invalidly formatted user_id. After removing that the import worked.

    Regarding “Remap existing users to default forum roles”, the import instructions recommend running ALL repair functions after importing, which I did at every import attempt.

    #158983
    Robkk
    Moderator

    @giuseppecuttone

    i dont know any plugin that can handle notifications very well , all i know is the default bbpress notifications and they seem to be having issues for users lately.

    as for changing the default email address see if this works

    use this for custom email address

    add_filter( 'wp_mail_from', function( $email ) {
    	return 'webmaster@mydomainname.com';
    });

    use this for custom from name

    add_filter( 'wp_mail_from_name', function( $name ) {
    	return 'WordPress Email System';
    });
    Robkk
    Moderator

    @kiwi3685

    what importer did you use , the one listed in tools>forums Import??

    because i see the bbPress one doesnt have much information in the codex and it is still in beta testing.

    this could work or not , im only guessing to try to help

    what you could try is go to tools>forums Repair forums and check

    Remap existing users to default forum roles

    and see if that fixes it.

    there is also a ticket on the importer for SMF

    https://bbpress.trac.wordpress.org/ticket/2380

    #158961
    Robkk
    Moderator

    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.

    #158950
    mvaneijgen
    Participant

    Have even more code to also redirect them to a page if a users fills in nothing

    
    add_action( 'wp_authenticate', '_catch_empty_user', 1, 2 );
    
    function _catch_empty_user( $username, $pwd ) {
      if ( empty( $username ) && empty( $pwd )) {
        wp_redirect($referrer . 'http://yourdomain.nl/aanmelden'); 
        exit();
      }
    }
    add_action('wp_login_failed', 'my_front_end_login_fail'); 
     
    function my_front_end_login_fail($username){
        // Get the reffering page, where did the post submission come from?
        $referrer = $_SERVER['HTTP_REFERER'];
     	
        // if there's a valid referrer, and it's not the default log-in screen
        if(!empty($referrer) && !strstr($referrer,'wp-login') && !strstr($referrer,'wp-admin')){
            // let's append some information (login=failed) to the URL for the theme to use
            wp_redirect($referrer . 'http://yourdomain.nl/aanmelden'); 
        exit;
        }
    }

    Not my code this is all scattered from around the web

    Robkk
    Moderator

    the only thing i can think of is that you might be caching logged in users which you shouldn’t.

    other than that you could see if its a plugin or theme issue.

    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.

    if its your theme contact your theme author.

    #158931
    Robkk
    Moderator

    see if the shortcode works in a default theme first

    as a test switch to a default theme such as twentytwelve, and see if this fixes.

    if it still doesnt see if its a plugin issue

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the issue

    if its not a plugin issue and is working in a default theme then your right about it being your theme

    do the other shortcodes work fine?? if so see if you only messed up this file below

    did you do any customization to this file content-archive-forum.php

    #158914
    darlingstewie
    Participant

    This is our BBPress Forum

    http://www.geekgirlpenpals.com/forums/

    I wonder if instead of just text of the Forum name and “Freshness” we can also have it show what the last topic was, when it was posted, and who commented on it? I thought that was the default but it seems to have changed.

    #158873
    lflier
    Participant

    Someday, somebody is going to get this 2x retina thing figured out so that it’s automatic across WordPress. Until that day, we have to do it ourselves.

    The general approach is to serve a double-sized image to the browser. So, if you want an 80px avatar in your topic replies (the standard size), you need to serve up a 160px avatar in order for it to look sharp on a retina screen (i.e. iPad, Android tablet, retina MacBook Pro, or one of those delicious new 5K iMacs). And as Joe Jackson says, “You gotta look sharp!”

    So, how is this accomplished? Well, in the template.php file of bbPress, there is a function called bbp_get_reply_author_link(). This is the function that gets the avatar, and it comes with the following arguments:

    	function bbp_get_reply_author_link( $args = '' ) {
    
    		// Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'post_id'    => 0,
    			'link_title' => '',
    			'type'       => 'both',
    			'size'       => 80,
    			'sep'        => ' ',
    			'show_role'  => false
    		), 'get_reply_author_link' );
    

    The argument we want to change is the ‘size’ argument. As you see, the default setting is 80. We want it to be 160. We can change it by changing a single line in the loop-single-reply.php file, which you can locate in wp-content/plugins/bbpress/templates/default/bbpress/. In the stock theme, the line reads:

    		<?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?>
    

    We want to change it to:

    		<?php bbp_reply_author_link( array( 'size' => 160, 'sep' => '<br />', 'show_role' => true ) ); ?>
    

    And that’s all there is to it. As long as your CSS specifies a width of 80 (or whatever you prefer), you won’t see any change in the size of the avatar in your browser, it will just look sharper on retina screens. You won’t notice any difference on standard resolution screens and, unfortunately, there is a price to be paid in the size of the image that is served to those screens. Ideally, WordPress/bbPress would know what resolution screen it is serving to and set the image size on the fly. There are some plugins that do this for site images — Jordy Meow’s WP Retina 2x is a good one — but they don’t work for avatars yet. See this support topic for more discussion.

    There’s just one more thing you’ll want to do. If you haven’t already done so, create a directory in your theme folder titled “bbpress”. Then make a copy of the file you just changed and place it in this directory. This file will override any file with the same name in the bbPress plugin directory. So, when you next update the bbPress plugin, you’ll retain the functionality you just created, because even though the plugin files are all replaced by the new version, the file in your theme directory will still be there.

    I hope this helps everyone look sharp!

    #158860
    Robin W
    Moderator

    don’t know what else to suggest, bbpress is tested to work with the default themes, suggest you contact your host provider.

    #158858
    bandormen
    Participant

    I’ve deactivated all plugins and I’ve used the default theme Twenty Fifteen.
    And also a reinstallation of the bbpress plugin didn’t solve the problem.

    Thx in advance for your help.

    Normen

Viewing 25 results - 2,476 through 2,500 (of 6,788 total)
Skip to toolbar