Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 67,076 through 67,100 (of 69,095 total)
  • Author
    Search Results
  • #40047
    Sgrunt
    Participant

    i hope to have understood: should not you simply add the day and month to the custom field of your registration page? it is allowed from the back end of buddypress and these data are shown in profile pages.

    #40046
    Sgrunt
    Participant

    obviously the facebuddy member-theme folder should have this path: wp-contentmember-themesfacebuddy member-theme

    #40045
    Sgrunt
    Participant

    yes a big big coffee! tell me: do you do not see Facebuddy in the list of member themes available here: Site admin > Buddypress > Select theme > ?

    #40044
    hotandrei
    Participant

    Yes is the last one…But the member theme doesn’t work.Can you check it out and give a solution?We will drink the coffee together then.

    Thanks

    #40042
    Andy Peatling
    Keymaster

    When you use the register.php file – /wp-signup.php is no longer used. You should change any links to /register

    Of course if you don’t want this functionality just don’t put register.php in your theme. The only problem with wp-signup.php is that it’s not easy to customize.

    #40041
    Sgrunt
    Participant

    yawn….early morning in Italy. If you first activate the facebuddy home theme, and then select site admin>buddypress>select theme>facebuddy it does not load? i seee that here all works: http://wordpress-blog.nl/

    please be sure to have downloaded the latest version of the zip (it was uploaded yesterday)

    #40040
    brad85
    Member

    Hey Andy…I just noticed when I add register.php to my custom theme, the menu-bar’s “Sign Up” link takes the user to domain.com/register, instead of domain.com/wp-signup.php. When I click the “Sign Up” link, it just redirects to the WP-Login screen.

    How can I fix this? Are there some “extra” modifications I’ll need to make to register.php and activate.php to get them functioning?

    Thanks again for the help

    #40039
    fishbowl81
    Participant

    possibly,

    /**************************************************************************

    xprofile_admin_manage_field()

    Handles the adding or editing of profile field data for a user.

    **************************************************************************/

    function xprofile_admin_manage_field( $group_id, $field_id = null ) {

    global $message, $groups;

    $field = new BP_XProfile_Field($field_id);

    $field->group_id = $group_id;

    if ( isset($_POST) ) {

    if ( BP_XProfile_Field::admin_validate($_POST) ) {

    $field->name = $_POST;

    $field->desc = $_POST;

    $field->is_required = $_POST;

    $field->is_public= $_POST;

    $field->type = $_POST;

    $field->order_by = $_POST[“sort_order_$field->type”];

    if ( !$field->save() ) {

    $message = __(‘There was an error saving the field. Please try again’, ‘buddypress’);

    $type = ‘error’;

    unset($_GET);

    xprofile_admin($message, $type);

    } else {

    $message = __(‘The field was saved successfully.’, ‘buddypress’);

    $type = ‘success’;

    unset($_GET);

    $groups = $groups = BP_XProfile_Group::get_all();

    xprofile_admin( $message, $type );

    }

    } else {

    $field->render_admin_form($message);

    }

    } else {

    $field->render_admin_form();

    }

    }

    line 199, in bp-xprofile-admin.php,

    not really sure what you are asking

    Brad

    #40038
    brad85
    Member

    Great! Thanks Andy! You’ve done some amazing work with BP.

    #40037

    In reply to: wp-signup vs register

    tamphet
    Participant

    I could not find signup.php in buddypress-home. Where else could it be?

    Or where can I download it?

    Thanks

    #40036
    Andy Peatling
    Keymaster

    There will be an extension pack launching soon.

    plugin-sidebar.php

    plugin-template.php

    register.php

    activate.php

    #40034

    In reply to: wp-signup vs register

    Andy Peatling
    Keymaster

    Copy register.php and activate.php from buddypress-home into your own theme. Make any HTML mods you need.

    #40032
    benny148148
    Participant

    hmmmm…I’m not using any other plugins other than buddypress and Dynamic Content Gallery in the regular plugins folder. This wasn’t an issue a few days ago, but suddenly it stopped working, and I haven’t done anything to the core.

    I’m using the latest trunk version, so it’s not a bug with RC-1.

    The weirdest thing about it is if I add a subdomain to the activation email…ie. community.domain.com/wp-activate.php?123456789, the domain suddenly becomes activated, and the password is given. Can’t figure out why adding the subdomain to the URL would work, but I just tested it for the heck of it and it actually worked! Now I’m even more confused…maybe I’ll just hack the core and make it send emails out with the subdomain in the link ;) … but really, I’d love to know why that is happening…I know hacking the core isn’t the best idea :)

    To see what exactly I’m talking about…check out the two links below and take a look at the URL in each one…both have the exact same activation keys…but only the one with the “community” subdomain shows up correctly:

    Activation WITH “community” subdomain:

    http://tinyurl.com/bljm5s

    Activation without “community” subdomain:

    http://tinyurl.com/be7m6e

    #40031
    Decisionc
    Participant

    could someone give instructions on how to install?

    i put home theme in themes directory

    and member themes in member-themes directory

    then activated home theme.

    facebuddy home theme is loading, but i get default buddypress member theme.

    do i have to activate member theme?

    any suggestions?

    #40029

    In reply to: nginx re-write rules

    Per Søderlind
    Participant

    nicola, I’ll add it when I know it’s working fine with buddypress. the config above works fine om my wpmu site, but as I said, I’m having problems with a buddypress site. The “problem” is that it’s not creating any errors I can use for debugging (and before you suggest that I should log errors .. I’m do that :)

    #40028
    Rich Spott
    Participant

    I had this problem too, I found that it was a conflict with some of my plugins.

    First, take out any plugins in /mu-plugins and try to activate the email again.

    I found that wp-super-cache was causing some conflict in my blog, I took it out and it works perfectly now.

    Then, if your activation works, place the buddypress plugins back in /mu-plugins and try to activate.

    If these work, then one by one add the plugins that you had until you find the one that broke it.

    That’s what I had to do and now my site works fine.

    #40025
    Adam W. Warner
    Participant

    Hey benny148148, followed you here from the “other” forum;)

    Here’s the thread I was referencing earlier regarding this same issue on my install (all default)… https://buddypress.org/forums/topic.php?id=1315

    However, at the end of the day, there is no solution. One of the BP gurus here, Burt Adsit, was helping me troubleshoot and referenced a possible fix, but didn’t know if it was to be put in trac as a bug fix. I’ve messaged him through my BP install, but haven’t heard back.

    I checked trac and didn’t see any reference to this issue. Hopefully other will chime in with a fix.

    #40024
    hotandrei
    Participant

    I have the same problem and i fallowed the exact instructions.When i select the theme from the admin it doesn’t show up.I see the default theme for bddypress.

    #40022
    nicolagreco
    Participant

    @sha_munira explain better your problem..

    what does not work? how did you installed it?

    #40020
    sha_munira
    Participant

    member theme doest work…please help

    #40018
    sha_munira
    Participant

    thanks, its because im not using wordpress MU…silly mistake..haha

    #40013
    benny148148
    Participant

    I’m using the default BuddyPress theme…I’ve just restyled the header.

    #40012
    Tracedef
    Participant

    I would try activating default Buddypress theme and see if the issue still occurs so that you can be sure it is not an issue with your theme…

    #40008
    Ekine
    Participant

    Thanks for replying.

    Maybe I should try exporting from wp+mu and importing to wp without buddypress first and see where I am getting to.

    #40006

    The proof of this is in wp-admin/options-permalink.php, where “/blog” is permanently placed in front of the permalink url on lines 82, 92, and 102.

    The function I was thinking of in functions.php was bp_show_home_blog(), but it doesn’t do exactly what I thought it did the way I thought it did it. :)

Viewing 25 results - 67,076 through 67,100 (of 69,095 total)
Skip to toolbar