Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 4,001 through 4,025 (of 6,788 total)
  • Author
    Search Results
  • #125967
    Erlend
    Participant

    I’m not asking for something that’ll work out of the box. Some pointers on what pieces of code to look at to have a go at this ourselves would go a really long way. Same goes for excluding forums and topics from default index.

    Unsal Korkmaz
    Participant

    FirmaSite Social

    How to download:

    http://wordpress.org/extend/themes/firmasite

    Theme Features:

    • Its GPL and free :)
    • Based on Twitter Bootstrap  and all WordPress, BuddyPress and bbPress files using only bootstrap css. That means you can use custom bootstrap styles and all of your site will use same theme style. There is already 13 custom bootstrap theme is included in theme from Bootswatch. In future, i will explain how you can add custom bootstrap styles
    • Using Bootstrap Responsive so all your site will be mobile ready. BuddyPress and bbPRess too!
    • Using Theme Customization API for theme options. It means you can see changes on live edit and you can easily extend options with wordpress functions directly. A video on action: http://youtu.be/F95TngS9er8  (Its a bit old version of theme but a good example for main theme options)
    • Google Fonts! lots of! You can choose google fonts from theme options ( watch example video from above)
    • 4 different layout:
    1. Content – Sidebar
    2. Sidebar – Content
    3. Only Content (Long)
    4. Only Content (Short)
    • Unique 2 feature: ShowCase and PromotionBar. ShowCase letting you show your special post in home page header like: http://twitter.github.com/bootstrap/examples/carousel.html and PromotionBar is letting you promote your posts in content header, footer or sidebar. You just marking your posts from your post panel. Both feature is using Bootstrap’s carousel component so there is no extra  javascript. An example post panel screenshot:
    • You can upload logo,disable comments, activate facebook comments, activate sharing buttons (facebook,twitter and google+1), upload custom background and option to remove responsive for fixed width if you want.
    • Supporting Post Formats! Formats have special template parts with get_template_part  and video,audio formats calling necessary js that need to play video or audios. System supporting oEmbed links too.
    • Ready for translation. Theme’s default language is English and Turkish translation is included. ( You can send me your translations if you have). You can use Codestyling Localization for translating theme.
    • I will add lots of filter and action (already have lots of) so you can use it as starter theme for your projects. I will explain how you can keep your customization while keeping theme up-to-date.

    Themes are in review for publishing on WordPress.Org Theme  Directory but in meantime, you can download and try it from links above. Please share your opinions on theme in this topic.

    #125901
    aberglas
    Participant

    You say “Capabilities are saved in the database, per user, per site”. That is clearly NOT the (normal) case. The wp_usermeta table wp_2_capabilities row stores ROLES, not capabilities. Those roles appear to index into the wp_2_options tble row wp_2_user_roles row which contains a list of capabilities.

    I have no idea what “Dynamic” roles are nor why bbpress contains a vast amount of capability fidling code, including no less than three files called capability.php. If someone could explain it in terms of actual table rows and colums that might help.

    I want a simple setup where Authors can access Private forums but only in the site which they are an Author. The simple coupled set up that JJJ says is too simplistic. But now it cannot be done at all?

    By default private sites are hidden to users. There is a weird “Auto Role” option that can adds bbp_participant to all users. But that means that users get access to all forums on all sites. Is that the “Dynamic role” feature?

    So turn that off. Try to add bbp_participant role explicitly using action ‘add_user_to_blog’
    $user->add_role(“bbp_participant”);
    However, that failed to add the user. WordPress really only supports one role per user, certainly set_role() only accepts a single role and purges any others. So I think something is resetting it.

    Then I try simply
    get_role( ‘author’ )->add_cap( ‘read_private_topics’ ); // for bbpress.
    That successfully updates the database (wp_2_user_roles), but has no effect on bbpress. I suspect because one of the capability.php files in bbpress has
    case bbp_get_spectator_role() … ‘read_hidden_forums’ => false,
    rather than just leaving it out. So capabilities do not merge properly between roles.

    I am new to WordPress/bbPress, and having spent many hours in this mess am getting very frustrated. How hard can it be? Users/Roles/Capabilities.

    Anthony

    #125893
    aberglas
    Participant

    The title says it. I have mutliple sites, and I need users that are registered to a site to be able to participate in the private forums of just that site. The problem seems to be bbPress’s totally confused capability model.

    By default private sites are hidden to users. There is a weird “Auto Role” option that can adds bbp_participant to all users. But that means that users get access to all forums on all sites.

    So turn that off. Try to add bbp_participant role explicitly using action ‘add_user_to_blog’
    $user->add_role(“bbp_participant”);
    However, that failed to add the user. WordPress really only supports one role per user, certainly set_role only accepts a single role and purges any others. So I think something is resetting it.

    Then I try simply
    get_role( ‘author’ )->add_cap( ‘read_private_topics’ ); // for bbpress.
    That successfully updates the database, but has no effect on bbpress. I suspect because one of the three(!) capability.php files in bbpress has
    case bbp_get_spectator_role() … ‘read_hidden_forums’ => false,
    rather than just leaving it out. So capabilities do not merge properly between roles.

    There is something called Dynamic roles whatever they might be.

    Maybe I need to abandon capabilities altogether and hook somewhere else? Maybe one of the numerous plugins works multisite?

    Regards,

    Anthony

    #125877
    matrixd
    Participant

    Thanks JJJ that was it! The most common mistake!

    I was already update wordpress, buddypress, bbpress and my plugins, and then I follow these steps:

    1. I deactivate every plugin, except Buddypress and BBpress,

    2. I change my theme to the default buddypress theme, (without 082net’s fix on my function.php),

    3. I run the Tools > Forums > Remap existing users to default forum roles

    4. I change moderator users to moderator role, and then everything works! The moderator has his privileges and everyone can see my forums!

    5. Then  I change back to my child theme (still working without 082net’s fix on my function.php),

    6. and starting activate my plugins one by one, while I was checking if everything works.

    At the end, my upgrade forums works fine and the moderators too has there privileges.

    My installation is now:

    WP Multisite 3.5.1 (was 3.4.2)

    Buddypress 1.6.4 (was 1.6.1)

    BBpress 2.2.4 (was 2.1.2)

    +420k posts, 11k members

    Thanks for your help and for your time!

     

    #125847
    ckpepper02
    Participant

    GOT IT!!!

    Turns out the default forum user role was set to participant upon activation. This was blocking my access to the Forum Admin button. To get around this, I had to create a new WP user account, set it as an administrator, and the change the Forum role of my original username to Moderator. When I logged back in, I can see the Forum button.

    Hope this helps someone else!

    #125846
    ckpepper02
    Participant

    GOT IT!!!

    Turns out the default forum user role was set to participant upon activation. This was blocking my access to the Forum Admin button. To get around this, I had to create a new WP user account, set it as an administrator, and the change the Forum role of my original username to Moderator. When I logged back in, I can see the Forum button.

    Hope this helps someone else!

    #125808

    My short answer is to turn off bbPress’s built in per-topic notifications, and build your own.

    Since it’s a blanket on/off for each user, save a usermeta option whether or not they’ve opted in; save this when they create their account. There are plenty of actions and filters in the default profile templates that will allow you to intercept the input/output process, so adding an additional field is not too difficult, though not exactly easy either (lots of touch points.)

    In all, this could be built as a completely self-contained plugin, and released to the community. I’d be surprised if someone isn’t already trying to build the same thing.

    #125788
    Erlend
    Participant

    Defaulting to plain-text, like bbpress.org now does, seems like a perfectly good compromise to me.

    #125779
    verlaine76
    Participant

    I know this was a while ago, but in case anyone else stumbles across this topic, here’s how I did it.

    In your wordpress install find the folder `/wp-content/plugins/bbpress/templates/default/css`

    Open the file `bbpress.css` in a text editor
    Within the bbpress.css file, search for the text `#bbpress-forums .status-closed`

    When you find this text, below is the entry `color: #ccc;` This is the colour for your text in closed topics. Change it to #000 for black.

    #125746

    Topic: bbpress 2.3beta1

    in forum Installation
    moebis
    Participant

    Not sure if this is a bbpress or buddypress issue (BTW can’t post on buddypress support forums, when I log in to bbpress.org, but that’s a separate issue, I also see the admin menu on buddypress.org)…

    Ok, so I’ve been playing around with both bbpress and buddypress for the last 2 weeks. I have checked out of svn both of the latest trunk versions. I’ve gotten pretty adept at setting everything up from scratch during my testing. When creating a group, let’s say “group1” in buddypress, I allow bbpress to create the corresponding forum during group setup. Now, when I go into the bbpress admin backend and create a forum from there, let’s say “subforum1” and make “group1” the parent, it works. Yeah! Just what I wanted, parent groups and sub-forums, however, it doesn’t work the way I expect it to. I can see the subforum in the group now from the front end, and post something in the subforum, but not in the main forum/group “group1”, and every time I click on the group, and then the forum tab, it shows the sub forum(s) and topic posts (only from the last post to the last subforum), and then a create topic form on the bottom, defaulting to the last subforum I created. Meaning I can never post anything in the parent forum “group1” or any other subforums that might have been created under group1. No dropdown to select a different forum to post it to. This is not how would expect it to work. I would expect that you default to the main parent forum (group1) for posting and reading of topics, and the subforums (which do show on the group1 forum page) you can click on and then post within them. It seems this functionality is almost there, and I want to make sure this is either something that is getting fixed, or a mistaken capability that I stumbled upon and it not meant to operate that way.

    Thanks for all of you hard work on these 2 projects, you guys are awesome! I can help contribute to the dev as a tester if you want.

    #125734
    Lynq
    Participant

    The bbPress theme is inside the plugin and inherits your wordpress themes styling.

    If you wish to change that then you need to copy the theme files out of the plugin and into your wordpress theme. The theme files are inside templates/default I believe.

    Copy them out into your wordpress theme and then edit those files to get your preferred look, good luck!

    #125716
    rossagrant
    Participant

    Just to update on testing too, I have fully tested this now and can recreate it on all of my installs and a brand new install of BP 1.6.3, WP 3.5 and BBPress 2.2.4.

    Admin can post @mentions freely, but regular BP members (assigned participant role) can’t without that error in the log appearing.

    The @mention still works as it should but I can’t for the life of me see why it’s throwing that error.

    I’ve tried it and get the same result on 3 separate servers now too. I have tried it with BP-Default and NO plugins except for BP and BBPress.

    If you guys need me to test anything else at all, please shout up.

    Should I create a ticket in TRAC?

    #125633
    singitlow
    Participant

    Hi, I encounter the very same problem with my 3.5 installation. When logged in, the forum is not found anymore.
    I already tried to “Remap existing users to default forum roles”, since it works when the role of a user is set to Keymaster, but that brought no solution. I also checked different browser. The same problem.
    Well, I´d be happy for a hint. Thank you in advance,
    singitlow

    #125620

    In reply to: bbPress 2.2.4 Released

    Erlend
    Participant

    When you you think images uploading problem will be fixed? I mean that default users can’t upload images now using TyniMCE editor.

    I think that’s intentional for now. See this:
    bbPress dev chat summary Jan 9, 2013

    #125590
    Michael
    Participant

    Okay, I think I figured this out on my own, though I don’t quite have the list of usable html matching what the default TinyMCE editor offers.  I’ll have to play with that separately.

    What I did was add a function in my functions.php file that changed the allowed markup for all bbPress (and blog) posts to include what I think is a reasonable list AND is still safe. I’ve added the IMG tag as well — for my Forum that’s a useful feature, and I’ll just have to monitor what people post in terms of image links.

    Here’s the code I added to my functions.php file:

    add_action('init', 'my_html_tags_code', 10);
    function my_html_tags_code() {
            define('CUSTOM_TAGS', true);
            global $allowedposttags, $allowedtags;
            $allowedposttags = array(
                    'p' => array(
                            'style' => array()),
                    'strong' => array(),
                    'em' => array(),
                    'i' => array(),
                    'del' => array(),
                    'h1' => array(),
                    'h2' => array(),
                    'h3' => array(),
                    'h4' => array(),
                    'h5' => array(),
                    'hr' => array(),
                    'blockquote' => array(),
                    'q' => array(),
                    'pre' => array(),
                    'span' => array(
                            'style' => array()),
                    'div' => array(
                            'style' => array()),
                    'ul' => array (),
                    'ol' => array (
                            'start' => array()),
                    'li' => array (),
                    'a' => array(
                            'href' => array (),
                            'title' => array (),
                            'rel' => array()),
                    'img' => array (
                            'src' => array(),
                            'width' => array(),
                            'height' => array(),
                            'alt' => array())
            );
            $allowedtags = array(
                    'p' => array(
                            'style' => array()),
                    'strong' => array(),
                    'em' => array(),
                    'i' => array(),
                    'del' => array(),
                    'h1' => array(),
                    'h2' => array(),
                    'h3' => array(),
                    'h4' => array(),
                    'h5' => array(),
                    'hr' => array(),
                    'blockquote' => array(),
                    'q' => array(),
                    'pre' => array(),
                    'span' => array(
                            'style' => array()),
                    'div' => array(
                            'style' => array()),
                    'ul' => array (),
                    'ol' => array (
                            'start' => array()),
                    'li' => array (),
                    'a' => array(
                            'href' => array (),
                            'title' => array (),
                            'rel' => array()),
                    'img' => array (
                            'src' => array(),
                            'width' => array(),
                            'height' => array(),
                            'alt' => array())
    
            );
    }
    #125587
    choibc
    Participant

    I am pleased to release this clean theme for non-tech people.
    It is basically bootstrap child theme and bbpress styling of default bbpress template.
    I have hard time to figure out new bbpress plugin and theme. Now I have some clue…with lots of googling. One thing I couldn’t do is “Previous/Next Topic” navigation while seeing single topic.

    Please refer here to download theme.
    WordPress Bootstrap + bbPress

    Any suggestion welcome.

    #125556

    In reply to: Vanilla 2 Converter

    Stephen Edgar
    Keymaster

    The docs are now up also,


    @brokentwig
    Key changes from your great work getting this started

    • Topic tags are now included
    • Once bbPress core converter is updated we can filter the users imported
    • Added Topic Closed Status
    • Inline docs consistent with other importers
    • Whitespace and code formatting improved
    • Uses parser.php to convert HTML & Smilies
    • Reply status not needed, defaults are built into converter.php
    • Reply Order removed, this is calculated during the import

    The to do list:

    • Remove the `callback_savepass` & `authenticate_pass` as you rightly point out they are not needed and Vanilla uses the same hash as WordPress for passwords so this is too easy.

    If you see any bugs with the converter `Vanilla.php` please post these to the trac ticket here.

    If there is anything else that needs doing before or after the import that I have not already listed in the codex docs if you could add/update these that would be great.

    https://codex.bbpress.org/import-forums/vanilla
    (Use the same bbpress.org username and password to login)

    #125536
    mintertweed
    Participant

    Okay, so I physically replaced bbpress.css located in bbpress/templates/default/css/ with the newly named style-forums.css and the styles are working fine. But I immediately replaced it with the original bbpress.css because my forums are still not appearing properly. So…first problem solved! Yay. Now, how do I make my forums appear once again? Thank you for your help thus far!

    #125520

    In reply to: bbPress 2.2.4 Released

    PavelS
    Participant

    @netweb When you you think images uploading problem will be fixed? I mean that default users can’t upload images now using TyniMCE editor.

    #125458
    jeffacubed
    Participant

    @wdfee Wow – I am SOO glad I stumbled across this y’day – as I was having the EXACT same issue related to the inability to post/create new (forum) topics within buddypress groups after I migrated all the group forums to bbpress 2.2.3.

    My config is WP 3.5 multisite, bbPress 2.2.3, BuddyPress 1.6.3, using bp-default theme &/or Genesis Agency w/ Genesis Connect.

    It was driving me bonkers trying to comprehend what could be wrong. Regardless, I de-activated bbpress on the root site (site 1), & re-activated bbpress ‘sitewide’ and now I can post new topics w/ buddypress group forums. Like you, I could always create new topics for group forums via the back-end & from the front-end via the sitewide forums, but the front-end was a no-go (w/in the actual group-forum) until I activated bbpress sitewide. As a test, I created a multisite ‘from scratch’ installation (WP 3.5 multisite, bbPress 2.2.3, BuddyPress 1.6.3, using bp-default theme) & activated both buddypress & bbpress from site 1 (root) and everything works 100% as expected from the start. I still don’t 100% understand the nature of this sol’n, but I’ll take it for now!

    Anyways, THANKS for posting this, as this forum thread was the tipping point to get a major [buddypress x bbpress] open-innovation project launched ‘only x1 month late’ √

    #125450
    captjones
    Participant

    There does not seem to be a step by step manual.

    `To customize bbPress:
    The directory “wp-content/plugins/bbpress/templates/default/” contains the directories “bbpress”, “css”, “extras”, and “js”, and the file “bbpress-functions.php”.

    “bbpress” contains template files; copy any you want to modify into a directory named “bbpress” in your theme’s root. eg. /wp-content/mytheme/bbpress/
    “extras” contains optional page templates and things to make life a little easier when customizing; copy any you want to use or modify into the same ‘bbpress’ folder. eg. /wp-content/mytheme/bbpress/
    “css” contains style sheets; copy any you want to modify into a directory named “css” in your theme’s root. eg. /wp-content/mytheme/css/
    Edit the new files for complete control over bbPress display in your theme.`

    ^ I did all this and the forum stopped working at all. No other option?
    Thanks.

    Erlend
    Participant

    I prefer the way WPORG deals with per-project forums over the BuddyPress-bbPress way. As in, when I click on a thread from within a group forum, I want that link to be a default forum link, not a custom group forum link. I realize this can potentially cause some confusion for users when they’re taken away from the group. Thing is that I’m running a forum-centric community, not a group-centric one, so for us it’s problematic the other way around:

    User discovers new thread via forum index, clicks thread, suddenly the user is in a group! And that’s what we’d like to avoid.

    #125438
    faeronsayn
    Participant

    @netweb thank you for that answer it should help debug. But what I don’t understand is that even if the BBpress template is not loading, why are the thread links in the forum being changed to something pretty awkward. Nothing of that sort is defined in the CPT plugin …

    The forum tries to point to this link for each thread

    http://example.net/forums/topic/forum-category/forum-sub1/%post-name%/

    If the bbpress templates are not loading, why are the links being defaulted to that exactly?

    #125430
    Stephen Edgar
    Keymaster

    These are the settings you should use:
    Select Platform: Mingle
    Database Server: localhost
    Database Port: 3306
    Database Name: My database name
    Database User: My database user name
    Database Password: My database password (which I use to login to phpMyAdmin)
    Table Prefix: wp_

    The changes above are `localhost` for the database server which is the default and is what is needed for most web hosts, the table prefix `wp_` which matches the screenshot you linked to above.

    If this does not work confirm with your webhost the correct settings for your database name, user & password.

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