Search Results for 'buddypress'
-
AuthorSearch Results
-
October 6, 2011 at 3:56 am #122587
ezramart
MemberTravel Junkie..good job.. It solve my prob…me too was getting an error!!
October 6, 2011 at 2:40 am #122584In reply to: [Resolved] Problems with bbpress and buddypress.
@mercime
Participant== usually is a different error everytime I download bbpress ==
So you’re going for the SiteWide forums and you cannot install the bbPress plugin when prompted? I would deactivate BuddyPress.and then go to Plugins > Add New and install bbPress 2.0. See if you can install bbPress if BuddyPress is deactivated.If yes, then cool. Go to BuddyPress > Forums and choose the Sitewide Forums.
If you still cannot install bbPress 2.0 plugin, then I suggest going to bbPress forums https://bbpress.org/forums/ and log in with same username and password you used to log in here.October 5, 2011 at 10:44 pm #122530In reply to: Adding conditions during signup for BP users
October 5, 2011 at 10:10 pm #122522@mercime
ParticipantOctober 5, 2011 at 10:07 pm #122521In reply to: Installation Crashes Site
DavidGMII
MemberI’ve been contacting my host all day, been trying different things myself, and all I can say is I’m completely frustrated. An awesome plugin I’m sure, if I can only get it to work

My memory limit is 99M, with a ceiling of 64M per script (edited php.ini). This should allow plenty of room for buddypress, I should think. I deactivated all my other plugins, added a code to the wp-config file to increase memory as well.
My host was at a loss, so they referred me back to you guys. Error logs don’t show anything of significance.
Any ideas? I would really like to get this plugin working, but feel like I’m at a total brick wall.

Thanks,
DavidOctober 5, 2011 at 9:58 pm #122518In reply to: Buddypress not creating user in WP Admin panel
brambo23
MemberWell i found the problem, you must have at least 1 field in the base profile field or the signup will not work at all
October 5, 2011 at 9:31 pm #122516In reply to: Buddypress not creating user in WP Admin panel
brambo23
Memberbump, still unable to find the problem
October 5, 2011 at 8:05 pm #122512dude
MemberI started a style.css from scratch, but I was not sure what to put in the Theme URI so just copied the buddypress default and added my child themes name at the end.
I was not sure what to put in the Author URI so again just copied the buddypress default Author URI
hope this helps
October 5, 2011 at 7:55 pm #122511dude
MemberI did not copy functions.php over
2) did not @import parent theme’s default .css
I followed the instructions given here:
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
October 5, 2011 at 7:04 pm #122510@mercime
Participant== when I go activate my child theme in admin I lose my sites header banner, and all the work associated with my menus is broken..? ==
You don’t need to copy over the functions.php of bp-default at all. Seems to me that this is more of a CSS mixed with missing tags issue. How did you add styles to your child theme?
1) @import parent theme’s default.css and then add your styles in your own stylesheet OR
2) did not @import parent theme’s default.css and created stylesheet from scratch?October 5, 2011 at 5:07 pm #122507In reply to: Buddypress 1.5 using too much resource??
Knight Fight
ParticipantI was having similar problems, slow to load and lots of resources. The problems seemed to dissapear when I removed a lot of the profile fields.
October 5, 2011 at 4:08 pm #122504dude
Memberwhy does start a new post take me to the community page?
anyway had to jump in here because I can’t start a fresh post..
like the title of this blog states (After activating child theme tags and categories not working correctingly ?)
I followed the instructions for creating a new bp child theme and put the following in my new style.css file:
/*
Theme Name: BuddyPress (my child themes name)
Theme URI: https://buddypress.org/extend/themes/my child themes name
Description: child theme for BuddyPress.
Version: 1.0
Author: my name
Author URI: https://buddypress.org/
Template: bp-default
Tags: buddypress, two-column, grey, dark
*/when I go activate my child theme in admin I lose my sites header banner, and all the work associated with my menus is broken..?
I copied all my previously edited files from the bp default theme to my child theme, but did not move or touch anything associated with the bp default functions.php, should I be doing this even though I do not need to make any edits with this file?
Using bp 1.5 with wp 3.2.1 the bp default template
Many thanks in advance
October 5, 2011 at 3:56 pm #122503dubwarrior
MemberHi
how do you do this ‘.. do not have to place those pages in the menu they just need to be there.,its strange because the registration page did not show up in the menu which was great; but the activation always created a visible page in the menu. In order to correct this i made the activation page a parent page to the registration page so it would not be visible.
it works well but the problem is when register and create a site it show that the main admin site is linked to any new site that is created???
October 5, 2011 at 1:18 pm #122498In reply to: Member Profile URL with User ID instead of Username
Di_Skyer
Member@scylderon hi, have ??? solved this quest?
I am looking for a similar solution
October 5, 2011 at 8:54 am #122489buddyrhev
Membermaybe my own made custom theme wasn’t compatible in buddypress 1.5, even i used r-a-y and boone’s bp template pack on my own made custom theme already. can anyone help me on how my own custom theme be compatible in buddypress 1.5?… i really need to fix the activity stream :'(
October 5, 2011 at 5:30 am #122482In reply to: Basic Forum Help
eastsidecindy
Membercorrect, I use both group forums and site wide forums. I have renamed the page assigned to buddypress to “group discussion” the forums for buddypress appears fine. just the one from site-wide doesn’t work. sitename.com/forums/ page only displays a title. I’ve created multiple forums for site-wide forums, individual forum works fine as well. just this forums page doesn’t
October 5, 2011 at 3:15 am #122478In 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.
-
AuthorSearch Results