Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 45,301 through 45,325 (of 64,526 total)
  • Author
    Search Results
  • #51867

    In reply to: Email masked

    johnhiler
    Member

    The tricky part is that the username is usually in the profile url… like here:

    https://bbpress.org/forums/profile/johnhiler

    So even if you required Display Names, the email might be visible in the profile URL.

    But I’ve seen where you can make the profile URL use numbers instead:

    https://bbpress.org/forums/profile/150000

    Maybe that’d be doable as a workaround?

    #85783
    Jim
    Member

    OK, did a Google search for 755 permissions and found this page:

    http://www.elated.com/articles/understanding-permissions/

    Changes my permissions in my FTP and suddenly and quite magically the themes appear!!!! Thanks for you help!

    Jim

    #85782
    Jim
    Member

    Hey Chris, I don’t know what they are, that’s just what they’re called, I don’t believe I had anything to do with the naming. Can you tell me how to change or check to see if I have 755 permissions turned on? Thanks for the help Chris!

    Jim

    #85658
    agwag
    Member

    Thanks! Will give it a try.

    #85781
    chrishajer
    Participant

    What are these “user” and “core” directories? bbPress themes you create should be in a my-templates directory. The my-templates directory should have 755 permissions.

    #33731
    Jim
    Member

    Hey all, I am trying to install some themes for my bbpress/wordpress site and when I go and install the theme files to my-themes all I get in the “available themes” page are blank themes with just the names showing, and if I try and activate it, the site is just blank. I have attached a shot, or a link to a screen shot of what I am seeing. Any help would be greatly appreciated! And by the way, thanks for all the help all ready, this site has helped me get my bbpres site running on the same DB as my wordpress!

    http://dl.dropbox.com/u/149309/example.jpg

    http://phoenixbikepolo.net/forum/

    #85657
    chrishajer
    Participant

    Replace all your existing files with the trunk download. It’s not a diff or a patch, it’s just a complete testing version of the software.

    #85656
    agwag
    Member

    For the absolute noob – how do we implement the trunk version?

    Does it just get unzipped into the htdocs folder? Does it replace the v1.0 files downloaded from the stable release? Or is complementary to those files?

    Thanks for any help.

    #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.

    #85712

    In reply to: Additional Field

    Billy Wilcosky
    Participant

    You what would also work, if there was a topic description plug in. Some forums let you post a title & a short description below that, then your message. I’m surprised bbpress doesn’t already have this type of plug in.

    #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?

    myselfv1
    Member

    i’ve reinstalled bbPress 5 times and still having the same error

    #81924
    56alifar
    Blocked

    Already got it, this function was already integrated in the sidebar widget. See: http://www.jahw.nl

    #85689

    @wemaflo

    obviously!

    #32419
    56alifar
    Blocked

    Hi,

    Is there a way to get the avatar showing in the bbPress_Latest_Discussion plugin?

    Thanks for your answer…

    #52375
    rspowers
    Member

    anyone get this to work with phpbb3?

    #85726
    chrishajer
    Participant

    What makes you think it was integrated correctly? Did it ever work right?

    Maybe bbPress (bb_) got installed into the WordPress (wp_) tables?

    #85487

    In reply to: Cue the band…

    Alex Luft
    Participant

    @r-a-y

    I hope it will turn out to be just how you say. I’ve been deciding for a while now whether to use bbPress or another forum/board software, and can can finally be sure that bbPress is the way to go.

    I’ve tried out SMF and phpBB and those two are so complicated and un-user-friendly, there’s no comparison.

    I really hope Automattic doesn’t abandon but rather invests its might and power into bbPress.

    #85688
    wemaflo
    Member

    “Yeah but u can’t have standalone forums in BuddyPress 1.2

    They are limited to groups only.”

    You can install a standalone bbPress forum and share user database and cookies with BuddyPress quite easy… Just fill the bb-config.php before running the setup.

    #85710

    In reply to: Additional Field

    johnhiler
    Member

    Ah that’s good!

    That means you only need meta information for each Topic… that’s a lot easier to pull off than having meta information for each Post. At least, that was true in 0.9… I think bbPress 1.0 has changed how it handles meta data.

    Anyway, you should be able to pretty easily commission a plugin to add an extra field to Topic Meta… it’s definitely technically possible, but a plugin to do this doesn’t yet exist.

    #85716

    In reply to: Smiley`s and pictures

    DKB
    Participant
    #85687

    Yeah but u can’t have standalone forums in BuddyPress 1.2

    They are limited to groups only. Some find it a problem.

    #85693

    In reply to: Login/Register bridge

    Just write the code how you want bbPress to handle passwords (the way your app does) and then put it in functions.php to override the function defined in pluggable file

Viewing 25 results - 45,301 through 45,325 (of 64,526 total)
Skip to toolbar