Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 66,976 through 67,000 (of 69,061 total)
  • Author
    Search Results
  • #40259

    In reply to: limit 1 blog per user

    produlz
    Participant

    I found a solution, but I’m not a PHP programmer, It’s a hack of the code of this topic https://mu.wordpress.org/forums/topic.php?id=5930

    Let’s go only if you are using the lasted trunk:

    Open the mu-plugins/bp-blogs/bp-blogs-templatetags.php – Find this code starting at line 682 end at 696

    <?php printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.", 'buddypress'), $current_user->display_name) ?>

    <?php _e("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress') ?>

    <form id="setupform" method="post" action="<?php echo $bp->loggedin_user->domain . $bp->blogs->slug . '/create-a-blog' ?>">

    <input type="hidden" name="stage" value="gimmeanotherblog" />
    <?php do_action( "signup_hidden_fields" ); ?>
    <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?>

    <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog &raquo;', 'buddypress') ?>" />

    <?php wp_nonce_field( 'bp_blog_signup_form' ) ?>
    </form>

    Replace using this newbie code:

    // One Blog Only HACK START
    <?php $blogscheck = get_blogs_of_user($current_user->ID);
    $blogarrayvalue = (get_object_vars($blogscheck[1]));
    $blogsiteURL = "http://locutorpro.com.br";
    if ($blogarrayvalue[siteurl] == $blogsiteURL)
    {
    echo "";
    printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>.", 'buddypress'), $current_user->display_name);
    echo "
    ";
    printf(__("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress'));
    echo "
    ";
    echo "<form id='setupform' method='post' action='";
    echo $bp->loggedin_user->domain . $bp->blogs->slug ;
    echo "/create-a-blog'>";
    echo "<input type='hidden' name='stage' value='gimmeanotherblog' />";
    echo do_action( "signup_hidden_fields" );
    echo bp_blogs_signup_blog($blogname, $blog_title, $errors);
    echo "<input id='submit' type='submit' name='submit' class='submit' value='";
    printf(__("Create Blog &raquo;"));
    echo "' />
    "; echo wp_nonce_field( 'bp_blog_signup_form' );
    echo "</form>";
    }
    else
    {
    printf(__("Sorry, you can have 1 blog only.", 'buddypress'));
    }
    ?>
    // One Blog Only HACK END

    I hope it help!

    Thank you for all dev team!

    #40258
    Kunkel
    Participant

    http://www.fanbud.com

    Going to be the next best sports fan hub online :)

    #40255
    nicolagreco
    Participant
    #40254

    In reply to: Facebook connect

    danielfelice
    Participant

    Have you guys not seen the BP/WP FB Connect Andy modified?

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

    #40249

    In reply to: wp-signup vs register

    Simon
    Participant

    Not specifically… although I have tried using the loader.php to load styles via custom.css over base.css. No effect. I can’t see a reference to bp_styles() in the buddypress templates anywhere… any idea where should I be looking?

    Cheers.

    update: Scratch that… found it in member theme. But adding that to the home theme has no effect (and it doesn’t appear to be included in the default bp home theme anyway).

    #40245
    Lance Willett
    Participant

    Not sure if I’m late to the game on this one, but I followed the instructions in the bp-forums directory (https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt) and the install went easily and quickly using the latest bbPress (checked out via SVN from trunk).

    I was prepared for a fight after reading this thread, but was pleasantly surprised that it worked the first time with no problems. ;)

    #40244

    In reply to: wp-signup vs register

    Simon
    Participant

    Also, using a custom theme seems to break the ajax calls for the BuddyPress widgets (groups, members etc.)… clicking the links in these widgets takes you to the respective directory pages rather than refreshing the widgets.

    #40228

    In reply to: Group Administration

    enlightenmental1
    Participant

    here is what I used to limit the group creation to admins only

    (can also be changed to allow other user levels if needed)

    hope this helps

    edit: bp-groups.php around line 205

    global $user_ID; if( $user_ID ) :
    if( current_user_can('level_10') ) {

    bp_core_add_subnav_item( $bp->groups->slug, 'create', __('Create a Group', 'buddypress'), $groups_link, 'groups_screen_create_group', false, bp_is_home() );

    }

    endif;

    #40226
    Timschmi
    Participant

    @James: Thank you for your comment. Did I get it right, that your wikis are only in the backend? We want wikis on the frontend like blogs or groups.

    @ostropunkt: PmWiki is really great. We have thought and discussed making group wikis? But our solution was, that wikis and groups are working in the same way.

    You have a list of all your wikis on your profil.

    You can have public and privat wikis.

    And you can invite your friends to your wiki.

    #40218
    nicolagreco
    Participant

    You could wait the integration of bp in wp,

    or (i think it’s better) you could try copying some tables in your new mu install:

    example:

    copy wp_users to wp_users

    wp_postmeta to wp_1_postmeta

    wp_posts to wp_1_posts

    etc etc..

    that’s a bit difficult to do, maybe others could help you better than me.. :)

    Nicola

    #40214
    Ekine
    Participant

    It would be great if users could be signed up without verifying their email address. Some users don’t receive the email because buddypress is lacking of a smtp setup.

    #40213
    Ekine
    Participant

    Sounds great to me. We have an ajax chat system on our board and our users couldn’t live without it. ^^

    It’s definetly very social and that’s what’s all about.

    #40201

    In reply to: Photo Galleries?

    lucifix
    Participant
    Quote:
    That’s not planned for 1.0 but next version!

    1.0 is near :)

    I own photography community and I’m thinking to move my site to Buddypress platform. But until albums won’t be ready I’ll stay where I’m now :)

    You can’t predict when will next version of 1.0 be ready, right? :)))

    Keep on good work guys, can’t wait till first official release!!!

    #40195
    zanzoon
    Participant

    http://www.ahtam.com

    Ahtam: I care

    Ahtam is the Arabic word for “I care”… Ahtam is a social network were members care for the world. Members blog about cancer awareness, being green, smoking cessation and much more…

    Please join my site and invite others

    #40192
    gpo1
    Participant

    A twitter client for BP is better?

    #40189
    Andy Peatling
    Keymaster

    Change /wp-content/member-themes/ to /wp-content/bp-themes

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

    #40185
    dheerajsingh
    Member

    I have posted the solution on this thread

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

    #40183

    In reply to: Require Login

    dheerajsingh
    Member

    You can have a look at this thread for new user moderation

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

    #40181
    dheerajsingh
    Member

    Hi This one is mine

    http://iitdreams.com

    Its a social network for Engineers and engineering aspirants

    #40180
    Sgrunt
    Participant

    i’m sure it depends on the version your using: i was getting mad to solve it in my local installation with no success: i thought it was a fault of my custom theme. Then i’ve tried my custom theme on my second local installation and all worked fine. I don’t remember how to see the current version number of buddypress, if i know how to see it i can tell you what is the working version.

    #40179
    Gibcosta
    Participant

    have now reverted back to RC1 and it’s working ok – had some conflict with All in One SEO plugin as well. Will have another go at it with the plugin disabled – still confused about the error message.

    You do not have any BuddyPress themes installed.

    Please download the Default BuddyPress Theme and install it in /wp-content/buddypress-themes

    #40176

    You can currently use the bbGroups plugin by BurtAdsit to do this with group forums. He’s paused integration for other Extended Profile fields and non-group forums for now, but that is the closest integration available currently.

    Take a look over at http://code.ourcommoninterest.org/

    Science Content!


    The problem with doing it any other way right now, is that without grabbing and caching forum specific BuddyPress profile info and putting it into a convenient user_meta array, it would require an additional query into the database for each user that you want each piece of info for. So lets say you not only want the avatar, but their fullname, and another piece of profile info that you’ve made up. That’s three queries a person, per post, per page. A page with 10 posts just gave you 30 extra queries. The bbGroups plugin works great to counter act this, but I’ve been the primary beta tester experiencing hiccups and Burt has patiently been trouble shooting with me to figure out why. The past week life has sort-of halted my ability to test, but it is a priority for me to address.

    #40173
    Gibcosta
    Participant

    unfortunately this did not work for me, i’d also like to use one wpmu install and run multiple separate domains with buddypress on a subdomain and bbpress, using the inove theme.

    see my post on wpmu forum

    https://mu.wordpress.org/forums/topic.php?id=11695#post-70149

    #40172
    ztas
    Member

    Hello thanks for your reply.

    The only things I’ve changed in the themes are the logo.gif files and the adminbar.gif in bp-core/images, I’ve never touched any php or html file.

    Only in footer.php I added google analytics code, just before the </body> tag.

    I just tested with the latest unmodified bp-themes (home and member) from SVN.

    I also updated all buddypress mu-plugins to this latest SVN.

    The sidebar is still in the content div.

    Offcourse I cleared browser-cache etc, etc.

    oh i know well that …lovely… bug: it happens only when you are not logged in.

    Yes you’re right this doesn’t happens when a user is logged in.

    Anyway I’ll keep on searching what causes this.

    If anyone has some advice, you’re welcome to post.

    sounepatoune
    Member

    Warning: require_once(/home/public_html/wp-content/member-themes/buddypress-member/index.php) [function.require-once]: failed to open stream: No such file or directory in /home/morisus/public_html/wp-includes/theme.php on line 822

    Fatal error: require_once() [function.require]: Failed opening required ‘/home/public_html/wp-content/member-themes/buddypress-member/index.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/public_html/wp-includes/theme.php on line 822

    How do we address the path issue?

Viewing 25 results - 66,976 through 67,000 (of 69,061 total)
Skip to toolbar