Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 62,976 through 63,000 (of 69,054 total)
  • Author
    Search Results
  • #51416

    In reply to: Adding Group Admins

    Jeff Sayre
    Participant

    That is not possible at this time–although it will be possible shortly! If you look at the BuddyPress roadmap for version 1.1, you’ll see that that is one of the targeted improvements.

    #51414
    Jeff Sayre
    Participant

    This is not a BuddyPress topic and should be targeted at the WPMU forums instead. But I’ll give you a little help nonetheless.

    You should be using an IDE (integrated development environment) that allows you to search all files for the piece of code you want to find–among many other very useful features. I’m on a Mac and I prefer Coda to TextMate–although I used to use the latter.

    The CSS is actually near the top of the wp-signup.php file. Search for function wpmu_signup_stylesheet().

    I’m also setting this to “not a support question” as it has to do with styling in a WPMU file and nothing to do with BuddyPress.

    #51411
    peterverkooijen
    Participant

    I’m now trying to add firstname, lastname and email address straight to the database tables of my mailing list. I’ve added the queries to the function I had put together here:

    function synchro_wp_usermeta($user_id, $password, $meta) {
    global $bp, $wpdb;

    ...

    $wpdb->query("INSERT mailingusers SET users_id='$user_id', group_id='1', signup_date= UNIX_TIMESTAMP(), firstname= '$firstname', lastname= '$lastname', email_address= '$user_email'");
    $wpdb->query("INSERT mailingcdata SET cdata_id=NULL, user_id='$user_id', cfield_id='1', value='$company'");

    }
    add_action( 'wpmu_activate_user', 'synchro_wp_usermeta', 10, 3);

    This mostly works, except the for the email address. $firstname, $lastname and $user_id are all correctly added to the table, but the email_address field stays empty.

    Can anyone spot the problem?

    How can I “call” the user’s email address upon ‘wpmu_activate_user’?

    Adding a $user_email argument only produces missing argument errors. I’m out of guesses…

    $current_user->user_email doesn’t work either:

    $wpdb->query("INSERT mailingusers SET users_id='$user_id', group_id='1', signup_date= UNIX_TIMESTAMP(), firstname= '$firstname', lastname= '$lastname', email_address= '$current_user->user_email'");

    #51410
    peterverkooijen
    Participant

    Styling the signup form is supposed to become a lot easier in the upcoming version 1.1.

    To get my signup form somewhat in line with the rest of the site I had to hack core files. Details of my attempts here.

    #51407
    r-a-y
    Keymaster

    Hey DJPaul,

    My post was off-topic; you’re right, I’ve copied and pasted my above post and created a new thread:

    https://buddypress.org/forums/topic/bbpress-migration-when-bp-11-gets-released

    Feel free to delete my previous post now (and this one as well)!

    Paul Wong-Gibbs
    Keymaster

    I’m closing this thread as people keep resurrecting it every month or so without any real contribution, and the most recent post is a new question and best to go in a new thread.

    #51401
    4064391
    Inactive

    I have had the same problem from WPMU 2.7.1, Buddy Press 1.0, all the way up tp WPMU 2.8.4 and BuddyPress 1.0.3. It’s driving me crazy and I can’t figure out why this is happening. It’s difficult to crop user avatar and impossible for groups to crop avatars.

    #51396
    Nightlyfe
    Participant

    I’m looking for something that takes credit cards like gigaom.. let me know more about your specific plans for membership.

    http://pro.gigaom.com/gigaom-pro-subscription-offer-gigaom-pro/

    Nightlyfe
    Participant

    Whats a good resource on getting started with RPX logins for wp/pb?

    #51389
    Nightlyfe
    Participant

    any word on a release?

    viable alternatives??

    http://simplercomputing.net/bp/

    looks like it works!

    #51381
    Paul Wong-Gibbs
    Keymaster

    Like I said, at this question on the WPMU forums / search on the WPMU forums.

    Back when BP was pre-beta, I used to use the following code on a test installation. I post it here just to try to counteract this notion that it is “impossible” to change the welcome text email. Please note I am not supporting this code and I’m not even saying that it will still work. YMMV.

    http://buddypress.pastebin.com/f284e0aab

    #51380
    Paul Wong-Gibbs
    Keymaster

    Original posters:

    a) Yes, but please discuss this on https://buddypress.org/forums/topic/modified-mail-message-registration.

    b) Yes I believe so, but this is a WPMU question so you are best searching on the WPMU forums

    c) Yes, it’s in the theme files. You can edit these at the moment and it might be easier to do in BP 1.1/trunk.

    #51379
    Paul Wong-Gibbs
    Keymaster

    This is not only resurrecting a 4 month old thread – of which you yourself have found several duplicates – this is more a WPMU question that BP. Use https://buddypress.org/forums/topic/modified-mail-message-registration for discussion on this area, i’m closing this thread.

    #51377
    4044409
    Inactive

    Fair enough. Perhaps I should have been clearer and stated that this issue occurs with both the standard Flutter and the MU-specific version.

    The purpose of me posting here was simply to see if somebody with a good knowledge of Buddypress has any idea what would cause the cropping area to disappear under admin accounts.

    #51376
    Jeff Sayre
    Participant

    I’ve never heard of Flutter. But the link you provided to the Flutter plugin on the WP plugin repo appears to be for the single-user verison of WordPress and not for WPMU. That could be the issue.

    Also, if you visit the homepage for the company that created Flutter, there is a link at the bottom to an alpha version for Mu.

    I’m changing this to “not a support question” as you are having issues caused by a 3rd-party plugin (and one that is not supposed to work with WPMU at that) and it has nothing to do with BuddyPress not functioning properly. I’m also moving this to the “Third Party Components & Plugins” forum and out of the “How-To and Troubleshooting” forum.

    #51375
    3859138
    Inactive

    There is a quickfix for this:

    open /wp-content/plugins/buddypress/bp-core/bp-core-widgets.php and change the line 88.

    from this:

    <?php if ( bp_has_site_members( 'type=newest&max=' . $instance['max_members'] ) ) : ?>

    to this:

    <?php if ( bp_has_site_members( 'type=newest&max=' . $instance['max_members'] . '&per_page=' . $instance['max_members'] ) ) : ?>

    I hope this helps.

    #51372
    Jeff Sayre
    Participant

    r-a-y

    The OP was talking about the multi-site plugin found on wpmudev.org. I just looked on wpmututorials and, although I found a page that talked about a multi-site plugin, it was not clear who coded it. The page was about an e-book package for purchase that comes with both the multi-site plugin and Advanced Domain Mapper. Again, I’m not sure if that refers to Donncha’s plugin on something Ron did.

    If either or both of these are separate plugins, perhaps it would make sense to rename them as there is too much confusion with the very similar names.

    Perhaps Ron and or Andre can clear this up!

    #51368
    Jeff Sayre
    Participant

    The appearance of various tags like p and /p on your forum posts used to indicate a problem with your xmllib library on your server. Read this post for information on the bug and how to fix it.

    However, I believe the buddypress-enable.php plugin in earlier versions of BP ( 1.0 and 1.0.1 ), was meant to fix that issue. But, for other reasons, this helper plugin is still required to make bbPress function properly in 1.0.3. So, make sure that you overwrite the existing version of the buddypress-enable.php file with the one that comes with 1.0.3 (found in /buddypress/bp-forums/bbpress-plugins/).

    Also, make sure you read and follow the instructions in the installation-readme.txt file found in /bp-forums/.

    With regard to XMLRPC, going forward, the communication between bbPress and BP v1.1+ will no longer depend on XMLRPC.

    #51367
    r-a-y
    Keymaster

    I got a reply from Ron over at WPMUTutorials.com.

    If you’re interested in our discussion, head on over to:

    http://wpmututorials.com/how-to/blog-categories/

    A summary of what Ron wrote:

    1- BP is enabled on a WPMU site basis so when running multiple site, BP can be enabled on one site and not another.

    2- The same applies to site options/settings like registration.

    3- BP does not filter a user’s blog list on the member profile by WPMU site. So, if you had 5 sites and a user had a blog in 4 of them then all 4 blogs would be listed.

    One way you could accomplish the multisite setup where BP is on the main site and blogs on the additional sites is

    Enable BP only on the main site.

    On the main site set registration to users only.

    On the additional sites set registration to only users can create blogs.

    Create an info page on the main site that provides links to each of the other sites’ signup page.

    This is a little bit involved and I’m a little pressed for time; I would at some point like to tackle this… but then I’d have to worry about redirecting /copying over blogs and permalinks on the existing WPMU setup… (sigh).

    @Jeff and Jason – Thanks for the info.

    Donncha’s Domain Mapping plugin wouldn’t work in my situation because I’ve setup WPMU with subdirectories and not subdomains.

    Re: the Multi-site plugin on WPMUDev. That one is different than the one that Ron has developed. So I’m not sure if XMLRPC will work with Ron’s version… a good question to ask him!

    #51363
    peterverkooijen
    Participant

    What is now the recommended approach for editing the activation/signup emails?

    Other threads about this:

    Modified mail message registration

    Use full name in confirmation emails

    control of new user activation email

    #51362
    Jason Giedymin
    Participant

    Some more tid-bits,

    Doncha isn’t really liking the Multi-site plugin as it has a few issues and not actively maintained. Also, the multi-site doesn’t handle xmlrpc. :-( Right there that kills it for buddypress.

    We may not see this patch included even though it has a milestone, and those reasons are that the Domain Mapper already has it’s teeth into wp-config. So there is intent right there.

    Having said this, I have buddypress working with my wpmu setup. At least it looks like it’s working! LOL! Haa! ::[ok back to work]::

    #51360
    Jeff Sayre
    Participant

    First, before doing anything, always read the readme.txt file that comes with the install package–this includes the WPMU and the BuddyPress packages. It has important information–especially about what you need to do with the theme files.

    Since BuddyPress resides in its own directory, I would suggest deleting the old install. You should not have any issues if you do this. Why? Because any of the plugins, themes, or custom code that you may be using should exist outside of the BuddyPress directory. Before deleting the BP directory, you need to make sure that you deactivate it in WPMU’s backend.

    Furthermore, just in case, it is always prudent to have recent backups of your custom themes and your plugins before deleting anything. You want to be absolutely sure that if you accidentally delete the wrong files or directories, that it will not be a big issue since you can simply copy them back. I also suggest that you have a recent copy of your wp-config.php file and even the .htaccess file (assuming that you have plugins installed that may have altered the default congifg).

    Since this is a fresh install, I would also suggest starting over with a new DB. If you already have data that you wish to keep in the DB–because you’ve been running WPMU for awhile in a production environment–then your only option is to manually delete the BP tables in the DB before reinstalling BP.

    Also, since you are having specific issues with the activity tables, you will need to follow my advice in this post to get the activity tables to reinstall.

    As always, before doing anything that affects the DB, please back it up. This also includes backing up your DB before each and every upgrade.

    FYI:

    https://codex.wordpress.org/Backing_Up_Your_Database

    https://codex.wordpress.org/Restoring_Your_Database_From_Backup

    #51359
    Jeff Sayre
    Participant

    This question is asked several times a month. It is a custom theme made by Andy. It will not be made available.

    https://buddypress.org/forums/topic/the-theme-for-this-site

    #51358
    Mohit Kumar
    Participant

    MU’ing WP

    hope this will help

    #51357
    omgitsrfb
    Participant

    thx jeff. in order to do this correctly would you mind helping me out with the the steps to do this? i seem to have found a few threads about doing this and I just want to make sure i do it properly so nothing breaks. i understand how to deactivate but then do I just upgrade manually or do I need to remove or delete the older version of buddypress? thanks for your help.

Viewing 25 results - 62,976 through 63,000 (of 69,054 total)
Skip to toolbar