Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 5,426 through 5,450 (of 6,794 total)
  • Author
    Search Results
  • #85738

    @Arturo

    Nice work mate!

    Just a glitch in images of pagination.

    Any chances of releasing it in public?


    @wemaflo

    You are lucky! ;)

    #85737
    Arturo
    Participant

    this is my bbpress installation with the new default theme http://forum.buddypress-it.it what do you think?

    thanks for the feedback…

    #85736
    wemaflo
    Member

    Yes, you’re right :)

    I was looking for an existing free option… Seems as if I were really out of luck :) Thanks for the offer, but I will port the Theme by myself :)

    #85735

    I just hit the nail, you see :)

    Well if you are looking for free option, then may be you are out of luck but if you are looking fo a paid option, then the sun is under your umbrella ;)

    #85734
    wemaflo
    Member

    @Michael R:

    Thanks, but this one is the BuddyPress 1.0 Theme, BuddyPress 1.2.x now oncludes a new default theme: http://testbp.org

    @Gautam:

    Yes, of course, but I want to run an external forum installation with the same design. BuddyPress has group forums, but there should be an external forum that has nothing to do with group forums.

    My site: http://musikinstrumentenbau.net

    External forum: http://musikinstrumentenbau.net/forum/

    #85733

    @wemaflo

    The link that @Michael R gave is for previous version of BuddyPress. (Good Resource!)

    But I see you want for the latest version 1.2+


    @Gautam
    is right about installing bbPress within BuddyPress or if you already have one, then you can link that too (I haven’t tried that yet but it should work easily).

    And if you want to run a standalone version with BuddyPress for some reason (may be because the limit that forums are within group only), then you are out of luck as nothing exists for now.

    #85732
    Gautam Gupta
    Participant

    If you have BuddyPress installed on WordPress, then just install the bbPress component. BP would automatically handle everything.

    #85731
    Michael
    Participant

    There is this one: http://manojkumar.org/buddypress-theme-for-bbpress/

    Not sure which version of BuddyPress it originates from, however.

    #51872

    In reply to: Email masked

    kevinator
    Member

    OK, we fixed it. I’ll find out details and post later. See how it looks here: http://www.cwnp.com/forums

    Our purpose in doing it is twofold:

    1. privacy/security, obvious reasons

    2. we just implemented the Leaderboard plugin found on bbpress.org so we can have a participation contest. Leaderboard by default shows username, which in our case is email.

    Bottom line is we also require “nickname”, so we’ve used that instead.

    Now, anyone know how to make Leaderboard a widget?

    #85779
    johnhiler
    Member

    Here are all the capabilities of each role, as defined in bb-includes/functions.bb-capabilities.php:

    function bb_init_roles( &$roles ) {

    $roles->add_role( ‘keymaster’, __(‘Key Master’), array(

    ‘use_keys’ => true, // Verb forms of roles – keymaster

    ‘administrate’ => true, // administrator

    ‘moderate’ => true, // moderator

    ‘participate’ => true, // member

    ‘keep_gate’ => true, // Make new Key Masters //+

    ‘import_export’ => true, // Import and export data //+

    ‘recount’ => true, // bb-do-counts.php //+

    ‘manage_options’ => true, // backend //+

    ‘manage_themes’ => true, // Themes //+

    ‘manage_plugins’ => true, // Plugins //+

    ‘manage_options’ => true, // Options //+

    ‘edit_users’ => true,

    ‘manage_tags’ => true, // Rename, Merge, Destroy

    ‘edit_others_favorites’ => true,

    ‘manage_forums’ => true, // Add/Rename forum

    ‘delete_forums’ => true, // Delete forum

    ‘delete_topics’ => true,

    ‘close_topics’ => true,

    ‘stick_topics’ => true,

    ‘move_topics’ => true,

    ‘view_by_ip’ => true, // view-ip.php

    ‘edit_closed’ => true, // Edit closed topics

    ‘edit_deleted’ => true, // Edit deleted topics/posts

    ‘browse_deleted’ => true, // Use ‘deleted’ view

    ‘edit_others_tags’ => true,

    ‘edit_others_topics’ => true,

    ‘delete_posts’ => true,

    ‘throttle’ => true, // Post back to back arbitrarily quickly

    ‘ignore_edit_lock’ => true,

    ‘edit_others_posts’ => true,

    ‘edit_favorites’ => true,

    ‘edit_tags’ => true,

    ‘edit_topics’ => true, // Edit title, resolution status

    ‘edit_posts’ => true,

    ‘edit_profile’ => true,

    ‘write_topics’ => true,

    ‘write_posts’ => true,

    ‘change_password’ => true,

    ‘read’ => true

    ) );

    $roles->add_role( ‘administrator’, __(‘Administrator’), array(

    ‘administrate’ => true,

    ‘moderate’ => true,

    ‘participate’ => true,

    ‘edit_users’ => true, //+

    ‘edit_others_favorites’ => true, //+

    ‘manage_forums’ => true, //+

    ‘delete_forums’ => true, //+

    ‘manage_tags’ => true,

    ‘delete_topics’ => true,

    ‘close_topics’ => true,

    ‘stick_topics’ => true,

    ‘move_topics’ => true,

    ‘view_by_ip’ => true,

    ‘edit_closed’ => true,

    ‘edit_deleted’ => true,

    ‘browse_deleted’ => true,

    ‘edit_others_tags’ => true,

    ‘edit_others_topics’ => true,

    ‘delete_posts’ => true,

    ‘throttle’ => true,

    ‘ignore_edit_lock’ => true,

    ‘edit_others_posts’ => true,

    ‘edit_favorites’ => true,

    ‘edit_tags’ => true,

    ‘edit_topics’ => true,

    ‘edit_posts’ => true,

    ‘edit_profile’ => true,

    ‘write_topics’ => true,

    ‘write_posts’ => true,

    ‘change_password’ => true,

    ‘read’ => true

    ) );

    $roles->add_role( ‘moderator’, __(‘Moderator’), array(

    ‘moderate’ => true,

    ‘participate’ => true,

    ‘manage_tags’ => true, //+

    ‘delete_topics’ => true, //+

    ‘close_topics’ => true, //+

    ‘stick_topics’ => true, //+

    ‘move_topics’ => true, //+

    ‘view_by_ip’ => true, //+

    ‘edit_closed’ => true, //+

    ‘edit_deleted’ => true, //+

    ‘browse_deleted’ => true, //+

    ‘edit_others_tags’ => true, //+

    ‘edit_others_topics’ => true, //+

    ‘delete_posts’ => true, //+

    ‘throttle’ => true, //+

    ‘ignore_edit_lock’ => true, //+

    ‘edit_others_posts’ => true, //+

    ‘edit_favorites’ => true,

    ‘edit_tags’ => true,

    ‘edit_topics’ => true,

    ‘edit_posts’ => true,

    ‘edit_profile’ => true,

    ‘write_topics’ => true,

    ‘write_posts’ => true,

    ‘change_password’ => true,

    ‘read’ => true

    ) );

    $roles->add_role( ‘member’, __(‘Member’), array(

    ‘participate’ => true,

    ‘edit_favorites’ => true,

    ‘edit_tags’ => true,

    ‘edit_topics’ => true,

    ‘edit_posts’ => true,

    ‘edit_profile’ => true,

    ‘write_topics’ => true,

    ‘write_posts’ => true,

    ‘change_password’ => true,

    ‘read’ => true

    ) );

    $roles->add_role( ‘inactive’, __(‘Inactive’), array(

    ‘change_password’ => true,

    ‘read’ => true

    ) );

    $roles->add_role( ‘blocked’, __(‘Blocked’), array(

    ‘not_play_nice’ => true // Madness – a negative capability. Don’t try this at home.

    ) );

    http://svn.automattic.com/bbpress/trunk/bb-includes/functions.bb-capabilities.php

    Hope that helps! :-)

    #85770

    In reply to: Main Theme

    Sorry I haven’t found a plugin. I am searching for one.

    But Your post should read


    “I want the bbpress theme to be a custom one, but needs the default theme to be available for some selected categories only. Is there a plugin that allows me to use specific themes for specific categories? “


    #33730

    I need to know what the different types of users : Key-Master, Administrator, Member etc can do on the bbpress forums and topics. I searched for about an hour and can’t find a suitable answer. Any post or link will help.

    #51860

    In reply to: Email masked

    kevinator
    Member

    Similar request here: by default, anyone on any bbPress forum can click on anyone else’s profile and see their email address. Big privacy/security issue. How can you hide/mask all user’s email addresses?

    crobinson18
    Member

    @ johnhiler,

    1) YES, I still have the problem if I activate the default Kakumei theme.

    2) NO, I have not installed any plugins recently.

    Thanks for any help!

    Chris

    http://www.nissenfundoplication.com

    #85673
    chrishajer
    Participant

    If you edited any files or are using any plugins or a custom theme, remove those for right now. Did you edit your keys in bb-config.php? Maybe there’s an error there? What version are you installing and where did you get it?

    If you are just installing a stock version, chances are it was not uploaded properly. This error does not occur in the default installation.

    bforeste
    Member

    Okay – here is my resolution. It only took me a weekend to figure this out.

    Media Temple’s default DB CHARSET / COLLATE settings are ‘latin1’ and ‘latin1_swedish_ci’ for WHATEVER reason…

    The bbPress db client connection is using UTF8 – which is why I kept getting the database error.

    I used this command (because the knowledge base article in MT is incorrect) to update my CHARSET and COLLATE settings for my DB:

    ALTER DATABASE db12345_wp CHARACTER SET utf8 COLLATE utf8_general_ci;

    That allowed me to finish the upgrade.php script.

    Hope this helps someone in the future.

    bforeste

    #33654
    deejaywoody
    Member

    Just installed WP 2.92 and Buddypress 1.2.1 on my dedicated Linux host @ 1and1.com. I literally:

    installed

    upgraded to 2.92

    updated permalinks to non-default settings

    downloaded/activated BuddyPress

    Activated BuddyPress Theme/Uploaded Header

    Initiated Forums (bbpress) Installation (went smoothly)

    When I visit either http://www.kdjn.net/forums or http://www.kdjn.net/wp-content/plugins/buddypress/bp-forums , I get a blank page and nothing else. No errors, no administration page, no login prompt.. just the white page. Can anyone throw me a bone?

    Thanks in advance-

    Eric

    jdh1178
    Member

    Hi there,

    For some reason the text (in the default theme) drifts off the area it should be in for replies to posts.

    Here is a modified css file, but the problem is the same even with the default files.

    Any thoughts?

    Thanks!

    http://twistedtools.com/forums/topic/how-to-download-freebies

    #69543

    You can set roles for unassigned roles and specify default roles for new members but if you change the role of a member, it is not reflected at other end.

    I find this limiting thing as a feature to have even more control on things.

    #78017
    chrishajer
    Participant

    You need to make sure you have all the settings correct. One thing that gets many people is that once they have the username, database name and password done, they still need to enter the database host. The space to enter that, instead of localhost, is not shown by default and there is a link to click, something like “show advanced database settings.” Do you need to use a database host other than localhost?

    #54439

    In reply to: Add nofollow to links

    jcrens8392
    Member

    Better yet, nofollow should be the default rel attribute value. From an SEO standpoint, you’re asking for trouble allowing dofollow links unless you really feel like checking out every single users’ website and making sure it’s not a “bad neighborhood”. Even then, Google will see you as handing out links indiscriminately and will probably take away any pagerank your pages might have had.

    Zatoozy
    Member

    Hey all there,

    I tried to integrate wordpress with my bbpress installation but it failed..

    I edited a setting in the menue, I forgot which..

    I typed “wp_” in a box where it needed to be, that’s what I understood after reading the description below the box.

    Now the forum has no users! My users.php file looks like after the first installation..

    I can’t login into the forum and so I can’t change it back to default..

    Please help me.

    { The searchbar didn’t }

    Zatoozy.

    Link to my forum: http://zap.bplaced.net/forum/

    #85524
    paulhawke
    Member

    I lifted the following list from functions.bb-core.php where bbPress defines the set of fields that should make up the user profile:

    'first_name' => array(0, __('First name')),
    'last_name' => array(0, __('Last name')),
    'display_name' => array(1, __('Display name as')),
    'user_email' => array(1, __('Email'), 'email'),
    'user_url' => array(0, __('Website'), 'url'),
    'from' => array(0, __('Location')),
    'occ' => array(0, __('Occupation'), 'role'),
    'interest' => array(0, __('Interests'))

    If you want any of these fields to appear in your custom profile, you will need to add them to the list of fields you were building. Basically, the filter in your plugin takes over defining the definitive list that will be used, not a list of additions above-and-beyond the defaults given by bbPress … least I think that is what the code is telling me! :-)

    #33502
    xananax
    Member

    Hello. I am lost; I’ve been scouring the internets for a few days to no avail.

    I thought what I was looking for should be quite easy, but I can’t find it.

    What I need is a forum-less forum, where all topics would be displayed according to date (kind of like the view inside a forum, or the “latest topics” in bbpress), with tags and/or categories for easy search.

    All the forums I find are multiple-forums by default. I can’t find one that allows me, if I set a single forum, to display the topics only.

    What would be even more ideal is a forum that doesn’t make a difference between a topic, a post, and a forum. Anything could be replied to, and nested, to infinity. But I guess this really doesn’t exist.

    Any help would be appreciated.

    Thanks

    #85481

    In reply to: No Plugins Found

    chrishajer
    Participant

    The permissions on your my-plugins should be 755. Are the permissions correct?

    Depending on when you installed and what version, the default permissions on the folder were 750, but that’s fixed now.

    If the permissions on the my-plugins directory are 755, we will look at something else.

Viewing 25 results - 5,426 through 5,450 (of 6,794 total)
Skip to toolbar