Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 66,676 through 66,700 (of 69,097 total)
  • Author
    Search Results
  • #41450

    In reply to: Several problems Andy

    Paul Wong-Gibbs
    Keymaster

    Here’s the current trac version – https://trac.buddypress.org/changeset/1287/trunk?old_path=%2F&format=zip.

    The problem is, I have seen various plugins cause incompatibilities and all sorts of weird problems with BuddyPress. If you aren’t willing to remove them to test, are you in a position to replicate the entire site to another domain or locally, to give you a copy to play around with?

    It’s possible that the Trunk copy of BuddyPress will fix the problems, but I doubt it.

    #41449

    In reply to: Albums For Users

    gpo1
    Participant
    dainismichel
    Participant

    Also, maybe my members don’t need entire blogs of their own, however, I would like them to be able to share articles, videos, PDF files, etc.

    Andy Peatling
    Keymaster

    The WordPress theme controls the home page and all blog pages, the BuddyPress theme controls everything else.

    dainismichel
    Participant

    Now I think I understand. Does the “buddypress member theme” define the look of the member profile pages and not the theme of their blogs?

    What I’m looking for is a standard configuration for member blogs.

    dainismichel
    Participant

    Thanks for your reply,

    Basically what I’ve done is follow the install procedure exactly, which results in the blue “buddpress-member” theme being the theme for members.

    I guess I’m still reeling a bit with the vocabulary. I feel like I am the “blog owner,” and it’s odd to talk about admins of blogs, because I am the admin of the community, and the others could be “member blog admins,” but it feels odd to me to call them “blog admins.”

    Anyway, I am allowing people to create their own blogs, because I want them to be able to share articles and videos and I want them to be able to post, etc.

    However, the blue default theme for what I’m calling “member blogs” is too far away from the overall site design for me to be able to use it.

    I created a test blog by creating a member and a blog. It automatically had the blue default template, which I assume is member-themes/buddypress-member.

    I then uploaded member-themes/buddypress-home (which I know is “wrong”), and went to “BuddyPress Settings | Select theme to use for member pages:” and chose “BuddyPress Home Theme.” That did not change the theme of the member blog I had created, so I logged in as the member and changed the theme to buddypress-home.

    What then happened, is that when I viewed that “member blog,” it asked me to add widgets, but, before opening up this community to its audience, I would like to have a “member blog theme” set, with all display options pre-selected. I don’t want the members who choose to have blogs to need to mess with blog settings, changing themes, etc.

    Also, I want the member blog theme to be cohesive with the site theme, which, if I did the install correctly, and if the blue wordpress default theme is what I’m “supposed” to be seeing, is a different style altogether.

    So, I’m trying to set up an automatic theme for member blogs that

    1) is cohesive with the main buddypress-home theme

    2) doesn’t require member blog admins to do anything regarding configuration (they can just start posting)

    Make sense?

    Thank you very much for your support!

    Sincerely,

    Dainis

    #41432
    Aron Jay
    Participant

    much better solution here.. with an option to set the number of blogs you want the user to have..

    https://buddypress.org/forums/topic.php?id=1900

    EDIT: i didn’t notice that this topic was 3 weeks ago..

    #41430
    Aron Jay
    Participant

    do not try the first code.. look here..

    https://buddypress.org/forums/topic.php?id=1900

    that function of that code above is to restrict non-logged in users from accessing the profile and group pages.. :D so, wrong post.. sorry if i confused you..

    – Aron

    #41429
    Aron Jay
    Participant

    <?php

    /*

    Plugin name:Limit Blogs per User

    Plugin Author:Brajesh K. Singh

    Plugin URI:http://www.thinkinginwordpress.com/2009/03/limit-number-of-blogs-per-user-for-wordpress-mu-and-buddypress-websiteblog-network/

    Author URI:http://ThinkingInWordpress.com

    Version:1.0

    */

    add_filter(\”wpmu_active_signup\”,\”tiw_check_current_users_blog\”); //send fake/true enable or disabled request

    add_action(\”wpmu_options\”,\”tiw_display_options_form\”); //show the form to allow how many number of blogs per user

    add_action(\”update_wpmu_options\”,\”tiw_save_num_allowed_blogs\”);//action to save number of allowed blogs per user

    /****Check ,whether blog registration is allowed,and how many blogs per logged in user is allowed */

    function tiw_check_current_users_blog($active_signup)

    {

    if( !is_user_logged_in() )

    return $active_signup;//if the user is not logged in,do not change the site policies

    //otherwise…

    global $current_user;

    $blogs=get_blogs_of_user($current_user->ID);//get all blogs of user

    $number_of_blogs_per_user=tiw_num_allowed_blogs();//find

    //if number of allowed blog is greater than 0 and current user owns less number of blogs */

    if($number_of_blogs_per_user>0&&count($blogs)<$number_of_blogs_per_user)

    return $active_signup;

    else

    return \”none\”;

    }

    /****How many blogs are allowed per user *************/

    function tiw_num_allowed_blogs()

    {

    $num_allowed_blog=get_site_option(\”tiw_allowed_blogs_per_user\”);//find how many blogs are allowed

    if(!isset($num_allowed_blog))

    $num_allowed_blog=0;

    return $num_allowed_blog;//return the number of allowed blogs

    }

    /*****Show the Number of Blogs to restrict per user at the bottom of Site options ****/

    function tiw_display_options_form()

    {

    ?>

    <h3><?php _e(\’Limit Blog Registrations Per User\’) ?></h3>

    <table>

    <tbody>

    <tr valign=\”top\”>

    <th scope=\”row\”>Number of blogs allowed per User</th>

    <td>

    <input type=\”text\” name=\”num_allowed_blogs\” value=\”<?php echo tiw_num_allowed_blogs()?>\” />

    <p>If the Value is Zero, It indicates any number of blog is allowed</p>

    </td>

    </tr>

    </tbody>

    </table>

    <?php

    }

    /**************Save the Number of blogs per user when the form is updated **************/

    function tiw_save_num_allowed_blogs()

    {

    $allowed_number_of_blogs=intval($_POST[\”num_allowed_blogs\”]);//how many blogs the user has set

    //save to the database

    update_site_option(\”tiw_allowed_blogs_per_user\”,$allowed_number_of_blogs);//now update

    }

    ?>

    You can set the number of blog you would like to allow.. its not mine, just wanna share it.. :D

    – Aron

    EDIT: to set the number of blogs, proceed to Site Admin/Options/ then look below..

    #41416
    felix2009
    Participant

    It is realy a native bbPress theme ;-)

    But they are to lame to release it …

    #41414
    Aron Jay
    Participant

    whoah.. thanks for your reply.. I\’m looking for a plugin solution.. I don\’t want to hard code.. my installation..

    anyway sorry for bumping.. :)

    Thank you so much.

    EDIT: I’m just too excited.

    #41410
    Paul Wong-Gibbs
    Keymaster

    Themes, yes. Widgets, no.

    EDIT: Oh, and you’re lucky to get a reply so quickly, don’t push it – wait at least a day before bumping ;)

    #41407
    Aron Jay
    Participant

    @Ipin,

    Really great!

    #41403
    Aron Jay
    Participant

    anyone?

    #41402
    Aron Jay
    Participant

    see.. Docs.. (codex)

    #41386

    In reply to: Albums For Users

    halfpint
    Participant

    Ok thanks Burtadsit. Im going to play around with some of the albums currently available for wordpress to see If I can intergrate them into buddypress

    #41381
    Sgrunt
    Participant

    as you wish, however i’ve published a new version of the theme compatible with the latest trunk

    #41380
    takuya
    Participant

    I’ve seen some buddypress sites, where user profile field has both linked and non-linked contents.

    Does anybody know how they fixed the profile?

    #41375
    halfpint
    Participant

    Thanks for all of your input on the theme. I have decided to go a different route and installed a diff home theme and just making some small css changes to the members theme.

    #41367
    kennibc
    Participant

    Please see this posting. I had the same question and this worked for me:

    https://buddypress.org/forums/topic.php?id=1629

    benny148148
    Participant

    Actually Burtadsit it’s happening to the “private messages” section of my buddypress install. Specifically the subject of the message before a user clicks to open it. Anytime there’s an apostrophe in the subject of a private message (in my installation), the slashes are added.

    How can I remove them? I’m using Trunk 1211

    #41363
    Burt Adsit
    Participant

    I really don’t understand what you are trying to do. You want to create a new member theme?

    https://codex.buddypress.org/developer-docs/creating-a-custom-buddypress-theme/

    takuya
    Participant

    this plugin just works fine on wpmu and buddypress. I’ve just tested with my yahoo account via openid. and it creates user account without any errors.

    #41352
    Sgrunt
    Participant

    ok solved the registration problem!

    #41350
    Sgrunt
    Participant

    ok, we’re gonna to see the light, i’m making all required changes and keeping them working, if you wish i could write a little documentation after this. I’ve only a question: the signup button now leads to the WMPU registration page and not to the buddypress register. Could you tell me if i’m doing something bad or if this is an upgrade issue?

    Thanx Andy, i’m sure that the final version will be a great success.

Viewing 25 results - 66,676 through 66,700 (of 69,097 total)
Skip to toolbar