Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 62,701 through 62,725 (of 69,054 total)
  • Author
    Search Results
  • #52170
    bpisimone
    Participant

    Thanks Jeff for the first breakdown, you’re a real help here!

    I’m running WPMU 2.8.1 in the root as a directory install. BuddyPress is the last stable version.

    I was also thinking it might have something to do with the nonce functions. What can cause something like that? It’ll be a coding error from my side, however I’m not sure where to look.

    I modified the skeleton member theme to work with my WordPress theme design. I have not modified any of the core, just added custom functions to the skeleton theme.

    – I switched back to the original BP theme, it seems to work correctly there. Where do I have to start looking then?

    – Another question, if I started to work with the trac files to modifiy the new theme structure from the scratch, do I have to fear more changes until the launch of 1.1 (just to the theme files?)

    #52168
    Paul Wong-Gibbs
    Keymaster

    I’m a believer of having some sort access to a trial version, or maybe demonstration site, when it comes to OSS. Of course need/should be able to charge money! For example I wouldnt buy a WP theme if I was only able to see a static image of one page before handing it over.

    #52167
    4274483
    Inactive

    Ok, I have update my scripts… now running WordPress MU 2.8.4. & BuddyPress 1.0.3.

    I have also managed to change the fullname for the username by adding a filter to bp_user_fullname. But it only works for the profile page. I was hoping to change all the fullname for the username throughout the site. (I find the original bp fullname Vs username system to be very confusing)

    Any Suggestions?

    #52164
    omgitsrfb
    Participant

    jeff or anyone else,

    i tried adding the tables myself and they show up and work just fine but it didn’t resolve my issue so i’m gonna assume i need to do what suggests in this thread but i want to confirm the steps and order of those steps. pls confirm these are the steps and order to remove buddypress and reinstall manually for a website that has been in production for awhile but recently upgraded to wpmu2.8.4a and bp1.0.3. i have data and members that i need to save.

    1. Read the ReadMe file

    2. Backup database

    3. Backup themes, plugins, wp-config, .htaccess and entire site, etc…..

    4. deactivate buddypress

    5. delete the bp directory

    6. manually delete the bp tables in the database (tables that begin with bp_)

    7. manually install bp

    8. do this https://buddypress.org/forums/topic/site-wide-activity-widget-not-working#post-22156

    is that all?

    #52162
    Jason Giedymin
    Participant

    DJPaul is right, you need to complete your integration. You’ll need to do than copy the defines over. For reference, what version are you using?

    #52161
    Jason Giedymin
    Participant

    DJPaul is right, you need to complete your integration. You’ll need to do than copy the defines over. For reference, what version are you using?

    #52160
    Jason Giedymin
    Participant

    @DJPaul: I agree with you DJPaul, and I’m a hardened OSS supporter. If the ‘fees’ are small I feel like it’s more of a donation and I’m ok with them. I would be completely against things if the cost was more. But hey, people are allowed to make money from WordPress and it puts food one many people’s tables.

    #52154
    Paul Wong-Gibbs
    Keymaster

    Well are you sure they work? Because unless I am misunderstanding what you’ve explained above, it seems it isn’t.

    #52153

    In reply to: Fighting Splogs

    Michael Berra
    Participant

    Any help on this one… I am pretty sure, this is a WPMU related issue, but the forum-answers over there do not really work for me (as described above). Those registrations seem to go directly – or buddypress “opened” another door…

    THANKS!

    #52152
    pxlgirl
    Participant

    Yeah, I’ve done that, I copied the ones I have in my wp-config.php to bb-config.php and added BB_ on each of them. Is that what you meant? That was the only way I know to set this up.

    pxlgirl.

    #52151

    In reply to: CSS help required

    Paul Wong-Gibbs
    Keymaster

    This is a request for help with CSS for a custom theme and not to do with the theme that comes with BP. Therefore I have renamed the topic as “CSS Errors” suggests there is an error with the BuddyPress.

    Also, these forums are for BuddyPress support and not the best place to ask for CSS help but I’m sure someone will help :)

    #52150
    Paul Wong-Gibbs
    Keymaster

    You need to set up cookie integration for your BP / BB properly.

    #52147
    Paul Wong-Gibbs
    Keymaster

    The first thing to remember BP is a WPMU plugin. That said…

    It’s a site wide plugin, so it runs on a main blog but hooks into all of the other blog. Each group you create can have or not have their own individual forums. Have a look at testbp.org or make a test installation, that’s probably the best way to find out.

    #52146
    Paul Wong-Gibbs
    Keymaster
    #52145
    Paul Wong-Gibbs
    Keymaster

    Premium dev site != everyone can have it. Premium WPMU plugins detest me.

    #52144

    In reply to: RSS Cloud

    Paul Wong-Gibbs
    Keymaster

    You can get RSS cloud plugins for BuddyPress; we use one at work. This is borderline on-topic; are you suggesting or looking for a cloud plugin that deals with a particular aspect of BP?

    #52143
    Paul Wong-Gibbs
    Keymaster

    And obviously you need to look on / ask at the BBPress forum for help importing information. That is not a BuddyPress subject.

    #52142

    In reply to: Member counter widget?

    Paul Wong-Gibbs
    Keymaster

    You are best off looking in the WordPress plugin directory, or searching or asking on the WPMU forums. This is not a BuddyPress. question.

    #52140

    In reply to: Default pages creation

    Anointed
    Participant

    I can’t provide buddypress specific code as I have not yet read through it, but here is the code that I use to have pages automatically created for new blogs when they are setup.

    Anyone with bp experience who knows the function names could easily change my code to bp appropriate code. [replicate the code as often as needed in the custom function file for as many pages as you need]

    Code:
    function change_newblog_defaults( $blog_id, $user_id ){
    global $wpdb, $current_site, $wp_rewrite;
    //–change to new blog
    switch_to_blog($blog_id);
    //make page
    $wpdb->insert( $wpdb->posts, array(
    ‘post_author’ => $user_id,
    ‘post_date’ => $now,
    ‘post_date_gmt’ => $now_gmt,
    ‘post_content’ => __(‘This is the content’),
    ‘post_excerpt’ => ”,
    ‘post_title’ => __(‘Pagetitle’),
    ‘post_name’ => __(‘Pagename’),
    ‘post_modified’ => $now,
    ‘post_modified_gmt’ => $now_gmt,
    ‘post_status’ => ‘publish’,
    ‘post_type’ => ‘page’,
    ‘to_ping’ => ”,
    ‘pinged’ => ”,
    ‘post_content_filtered’ => ”
    ) );
    //inserted id
    $page_id = $wpdb->insert_id;

    //change template inserted page
    $wpdb->query(“insert into $wpdb->postmeta (post_id,meta_key,meta_value) values ($page_id,’_wp_page_template’,’templatefile.php’)”);
    //restore blog
    restore_current_blog();
    }
    add_action(‘wpmu_new_blog’, ‘change_newblog_defaults’ );

    #52139
    Anointed
    Participant

    @Andrea-r – I believe I have the ‘first part’ solved already. That being that each blog has it’s own users. Aaron was kind enough to spend the time building a custom plugin for me that allows users to signup on a subdomain blog without leaving the subdomain. *Aaron rocks!*

    This way each subdomain has ‘it’s own’ members, though all members are automatically added to the primary blog and the bp blog behind the scenes. [expect this plugin to be released on the premium dev site sometime soon so everyone can have it]

    Now that each ‘blog’ will have it’s own users, I have an idea to attack this problem.

    1. As most everything displayed by buddypress is via widgets, I may be able to duplicate the widgets and then write some custom filters to only output what the ‘subdomain blogs’ users have been up to.

    e.g. filtering the activity stream to only show activity from the blogs users which is being displayed.

    2. for those displays that are not widgets, like the members list/groups list/ etc…

    That may take a bit more filtering.

    Anyhow, I have to imagine that buddypress is already thinking about this type of stuff already. I personally just can’t see how they can even begin to implement buddypress on wordpress.com type of sites without this ability.

    #52137
    Andrea Rennick
    Participant

    Um, actually, if you use a multi-site plugin you should be able to do what you want. (I admit, I skimmed, but that’s what I got out of it…) Some edits might be required so they don’t share users.

    “will it be possible for every member to have their blog integrated into the main site? I don’t like how when they register a blog it kicks them to what looks like Kubrick or w/e the default MU theme is.”

    Again, been done a lot, answered plenty. sue the more_blog_defaults plugin or simply replace the ugly default theme with one of your choosing (in a folder called default). don’t enable any other theme and they won’t be able to choose any different, plus get the one you want on setup.

    #52135
    r-a-y
    Keymaster

    Hey JF,

    Yes, your bp-custom.php file should start with <?php and end with ?>.

    I assumed that you did that already! But if you didn’t, put that in your bp-custom.php file.

    Give that a shot and let me know if that works!

    If you’re having problems with spam signups, I recommend using this .htaccess snippet by WPMUTutorials.com (by way of Darcy Norman):

    http://wpmututorials.com/how-to/spam-blogs-and-buddypress/

    #52134
    jfcarter
    Participant

    Hi r-a-y,

    Thanks. I was hoping not to have to use this function, because alot of our users are getting to know each other and are sending messages.

    The problem is that someone keeps creating accounts and spamming all of our members (well over 100) and I have to keep going in and deleting all of the messages. And I have to watch the user signups like a hawk.

    So, anyway, this was my first time using it. I changed the functions, but still can’t get it working. I think it may be how I’m adding it to my bp-custom.php. Here’s what I’ve added:

    function bp_send_message_to_friend_button() {
    global $bp;
    if ( bp_is_home() || !is_user_logged_in() || !friends_check_friendship($bp->loggedin_user->id,$bp->displayed_user->id) )
    return false;
    $ud = get_userdata( $bp->displayed_user->id );
    ?>
    <div class="generic-button">
    <a class="send-message" title="<?php _e( 'Send Message', 'buddypress' ) ?>" href="<?php echo $bp->loggedin_user->domain . $bp->messages->slug ?>/compose/?r=<?php echo $ud->user_login ?>"><?php _e( 'Send Message', 'buddypress' ) ?></a>
    </div>
    <?php
    }

    But I’m a bit confused. Shouldn’t it start with <?php and end with ?>

    Thanks for your help,

    jfcarter

    #52129
    omgitsrfb
    Participant

    fuzzyman,

    i never got an answer so i just deleted that piece of buddypress so i didn’t have some functionality showing that didn’t work.

    #52125
    Jeff Sayre
    Participant

    Are there other errors in your server’s log files?

    Are you using a custom theme? If so, switch to the default BuddyPress themes and see if the problem goes away.

    <buddypress>Do I have to install some jquery thing before using buddypress?</buddypress>

    No. BuddyPress does not load the JQuery library but WPMU does. Currently, WPMU uses JQuery version 1.2.6.

    Do you have any plugins other than Buddypress activated? If so, try disabling them and see what happens. There could be a JQuery version conflict somewhere.

Viewing 25 results - 62,701 through 62,725 (of 69,054 total)
Skip to toolbar