Search Results for 'buddypress'
-
AuthorSearch Results
-
October 5, 2011 at 3:15 am #122478
In reply to: Profile Fields show on email to admin?
saijin_nxtoyou
MemberI tried xprofile_get_field_data() but it didn’t work, maybe I’m just too dumb..

So I tried it using MySQL, here is my function wp_new_user_notification, I edit wp-includes/pluggable.php
function wp_new_user_notification($user_id, $plaintext_pass = ”) {
$user = new WP_User($user_id);$user_login = stripslashes($user->user_login);
$user_email = stripslashes($user->user_email);
$buddypress_fields = $user_id;// The blogname option is escaped with esc_html on the way into the database in sanitize_option
// we want to reverse this for the plain text arena of emails.
$blogname = wp_specialchars_decode(get_option(‘blogname’), ENT_QUOTES);$message = sprintf(__(‘New user registration on your site %s:’), $blogname) . “rnrn”;
$message .= sprintf(__(‘Username: %s’), $user_login) . “rnrn”;
$message .= sprintf(__(‘E-mail: %s’), $user_email) . “rnrn”;// Add Custom Fields from buddypress table to admin email – Start
$buddypress_result_ = mysql_query(“SELECT
wp_bp_xprofile_fields.name,
wp_bp_xprofile_data.value
FROM wp_bp_xprofile_fields, wp_bp_xprofile_data
WHERE
wp_bp_xprofile_data.user_id = $user_id
AND
wp_bp_xprofile_fields.id = wp_bp_xprofile_data.field_id
ORDER BY
wp_bp_xprofile_data.field_id”);while($buddypress_row = mysql_fetch_array($buddypress_result_))
{
$fields = $buddypress_row;
$fields_value = $buddypress_row;
$message .= $fields . “: rn”;
$message .= $fields_value . “rnrn”;
}// Add Custom Fields from buddypress table to admin email – End
@wp_mail(get_option(‘admin_email’), sprintf(__(‘[%s] New User Registration’), $blogname), $message);
if ( empty($plaintext_pass) )
return;$message = sprintf(__(‘Username: %s’), $user_login) . “rn”;
$message .= sprintf(__(‘Password: %s’), $plaintext_pass) . “rn”;
$message .= wp_login_url() . “rn”;wp_mail($user_email, sprintf(__(‘[%s] Your username and password’), $blogname), $message);
}
October 5, 2011 at 2:54 am #122477In reply to: Theme broken after upgrade to 1.5
Mike84
Member@mercime I have managed to get past the white screen. It was due to my template, Roots Framework, use get_template_directory(). The template directory would now be bp-default. I changed this to get_stylesheet_directory() and my template is loading but its not loading my css. Any ideas there? The site can be viewed at http://www.cozanigera.org/web if that helps at all.
October 5, 2011 at 1:59 am #122476dsg257
Memberwhich file has the content-main in it i have the same problem but only on the buddypress generated pages
October 5, 2011 at 1:47 am #122465modemlooper
ModeratorYou need to have an activate page as well as register. You do not have to place those pages in the menu they just need to be there.
October 5, 2011 at 1:18 am #122418In reply to: Buddypress not creating user in WP Admin panel
brambo23
Memberhere is a interesting thing, even if i don’t enter anything into the fields, and just click Complete sign up. It takes me back to the home page without any notices. I will be investigating that but thought this might be a clue as to the problem.
October 5, 2011 at 12:32 am #122416In reply to: Buddypress not creating user in WP Admin panel
brambo23
MemberWell i followed your recommendations, switched to a new host with the recommended php version, and that still didn’t work. Now can I get a different suggestion?
October 5, 2011 at 12:20 am #122415In reply to: language problem while upgrading Buddypress
elyautia
MemberBut I have a new problem. I cant put stuff on my widget sidebars after the update….This is a theme problem or the update?
October 5, 2011 at 12:16 am #122414In reply to: language problem while upgrading Buddypress
elyautia
MemberdisRegard this thread. I fix the problem…
It was a plugin problem. What I did, just de-activate all the pluggins and active them one by one with the spanish .mo file and I found the problem.
October 4, 2011 at 10:03 pm #122410In reply to: Installation Crashes Site
DavidGMII
MemberHello,
I did add a line in the .htaccess file increasing the memory to 96M, however when I uploaded that particular .htaccess file, the site crashed again, as if it didn’t like the code I had added. Is there some other way to increase the memory? I’ve heard of the php.ini file, but I’m not sure where its located/if I have access to it.
The site still reads this message when I activate buddypress
“Server error
The website encountered an error while retrieving http://test2.domain.com/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1. It may be down for maintenance or configured incorrectly.”Thanks.
October 4, 2011 at 9:44 pm #122409October 4, 2011 at 8:59 pm #122405In reply to: Installation Crashes Site
@mercime
ParticipantHave you checked your error logs? Most likely you need to increase memory limits or check out other possibilities.
October 4, 2011 at 7:16 pm #122397In reply to: Theme broken after upgrade to 1.5
Mike84
Member@mercime It is a custom child theme of bp-default. Still haven’t found the problem. Ill be working on it this evening. Ill turn on debug and see what happens.
October 4, 2011 at 6:44 pm #122395In reply to: Notifications delay PLEASE HELP!
Mary Jane
Memberand i just went to someone elses buddypress site and the same thing is going on is this a international thing?
October 4, 2011 at 6:40 pm #122394In reply to: Frisco Child Theme
David Carson
ParticipantFYI – The theme is now available in the WordPress Theme Directory. This thread was quite long, so I’ve started a new one and maybe this thread can be closed now.
October 4, 2011 at 5:12 pm #122391Lesue
MemberYes, this is just a Buddypress 1.5 site, the theme is updated to 1.5 and there are no other plugins whatsoever. You can view the site at http://lesue.com/3gasbags/ . Thanks for your prompt response.
October 4, 2011 at 4:39 pm #122390Anthony
MemberHi, This sounds like a real head scratcher, but I found some things you could get started with, http://devthought.com/2008/01/12/textboxlist-meets-autocompletion/ and http://www.brandspankingnew.net/specials/ajax_autosuggest/ajax_autosuggest_autocomplete.html I found them at http://www.noupe.com/tools/100-essential-web-development-tools.html Maybe writing a plugin that applies them to a text field in the BuddyPress custom fields. Thanks for asking for my help
October 4, 2011 at 4:04 pm #122389Tammie Lister
ModeratorIs this happening without any plugins aside from BuddyPress? Assuming (which I think it is) the theme is updated to BuddyPress 1.5 and assuming you mean it is at the bottom vertical – is that right? A link really would help clarify where it is vertical though. It sounds to me like a scripting or CSS issue, again if you could provide a link that would help narrow the field.
October 4, 2011 at 3:32 pm #122388In reply to: Buddypress is not SEO friendly
linick
Memberany other suggestions are welcome…???
October 4, 2011 at 12:39 pm #122380In reply to: From Roadmap, basic privacy
Steve
ParticipantHi @piermaria
Have you had any luck upgrading the plugin to be compatible with BuddyPress 1.5? How much will this cost?
October 4, 2011 at 11:57 am #122376movefearlessly
MemberI’m having the same issue. my theme is updated to 1.5, i deactivated it and activated the default theme, and i deactivated everything save buddypress and akismet. also just reuploaded 1.5 fresh. no activity feed…
October 4, 2011 at 8:00 am #122366In reply to: Theme broken after upgrade to 1.5
@mercime
Participant@Mike84 no worries. Which child theme are you using?
There still might be a solution although I haven’t seen a child theme of BP 1.2 cause white screen in front and backend yet.October 4, 2011 at 5:42 am #122364In reply to: How to Get User Profile Data
N3k0
ParticipantExcelent… thats works fine, is i was looking for
thansk a lot… online a cuestion, how i can display correctly date fields @enailor ???October 3, 2011 at 11:10 pm #121795In reply to: Display age on profile page
Walid
Participant@sbrajesh can you put this into a plugin please? I’m not sure if I got your post explaining it, so it would be easier if in form of a permanent plugin. This can further be very handy integrating with some ” coming birthdays ” plugin, but still that basic age showing is much needed. thank you.
October 3, 2011 at 10:28 pm #122147In reply to: Internal Configuration Settings
Paul Wong-Gibbs
KeymasterYou don’t need to do that any more. Just change the slug of the page mapped to registration (wp-admin BuddyPress > Pages).
October 3, 2011 at 8:12 pm #122137In reply to: User registration is currently not allowed
drmikelbrown
Member -
AuthorSearch Results