Search Results for 'buddypress'
-
AuthorSearch Results
-
January 20, 2011 at 8:21 pm #103461
In reply to: Hide General Settings
r-a-y
KeymasterAdd the following to your theme’s functions.php:
`function ray_bp_remove_settings() {
global $bp;// removing the existing settings tab
bp_core_remove_nav_item( $bp->settings->slug );
}
add_action( ‘init’, ‘ray_bp_remove_settings’, 0 );function ray_bp_readd_settings() {
global $bp;// add a new settings tab to use notifications as default tab
bp_core_new_nav_item( array( ‘name’ => __(‘Settings’, ‘buddypress’), ‘slug’ => $bp->settings->slug, ‘position’ => 100, ‘show_for_displayed_user’ => false, ‘screen_function’ => ‘bp_core_screen_notification_settings’, ‘default_subnav_slug’ => ‘notifications’ ) );// bug in bp_core_remove_subnav_item(), we have to hack the screen function so it displays the notifications screen when you land on /settings/
if ( $bp->current_component == $bp->settings->slug && $bp->current_action == ‘general’ )
add_action( ‘wp’, ‘bp_core_screen_notification_settings’, 3 );// add back the subnav notifications tab
$settings_link = $bp->loggedin_user->domain . $bp->settings->slug . ‘/’;bp_core_new_subnav_item( array( ‘name’ => __( ‘Notifications’, ‘buddypress’ ), ‘slug’ => ‘notifications’, ‘parent_url’ => $settings_link, ‘parent_slug’ => $bp->settings->slug, ‘screen_function’ => ‘bp_core_screen_notification_settings’, ‘position’ => 20, ‘user_has_access’ => bp_is_my_profile() ) );
}
add_action( ‘init’, ‘ray_bp_readd_settings’ );`Tested lightly. Encountered a few bugs, but this will work…
January 20, 2011 at 7:59 pm #103459In reply to: Groups and SubGroups
Ekine
ParticipantThere seems to be a plugin for that. https://buddypress.org/community/groups/bp-group-hierarchy/
But it would be nicer if it be a core feature since it seems to be a fundamental feature.January 20, 2011 at 7:53 pm #103457In reply to: Help! “Sorry, no members were found”
realfoodmedia
MemberOK now I tried deleting all the plugins. Reinstalled BuddyPress and still having the same problems.
Help!
January 20, 2011 at 7:33 pm #103449In reply to: Help! “Sorry, no members were found”
realfoodmedia
MemberOK I deactivated all the plugins. I also deleted all the themes except for the WP default theme.
Then I deleted the BuddyPress theme.
I reinstalled BuddyPress, activated the BP default theme.
No go.
Here are the problems:
1. No members are showing up, even though there ARE members.
http://www.realfoodmedia.com/screengrabs/no-members.jpg
2. Activity IS working — so you can see that there ARE members.
http://www.realfoodmedia.com/screengrabs/activity-works.jpg
3. I went in as realfoodmedia and testing (both members) and I requested friendship from Joe Schmo. I tried to go in as Joe Schmo to accept the friendship. I saw the notification in the top menu bar. But when I tried to go to the notification page, there were no friend requests.
http://www.realfoodmedia.com/screengrabs/no-friendship-requests.jpg
Then the notification disappeared in the menu.
And, when I logged in later as realfoodmedia, and checked out Joe Schmo’s profile, it shows that I have sent a friend request. So I’m waiting for Joe to accept me but he can’t.
January 20, 2011 at 6:41 pm #103440In reply to: Let users add their own background?
Nahum
Participantyou might start here with this groups plugin that allows custom css per group. https://buddypress.org/community/groups/buddypress-group-css/
i remember reading a long time ago about this plugin being reworked for profiles since groups and members components are similar.
January 20, 2011 at 4:52 pm #103435Hugo Ashmore
ParticipantI have too little knowledge on this matter.
Well you said it

Email is a deep and complicated subject however setting up servers to be able to forward mail relatively trivial how that mail is dealt with though once it is actually in transit around the net is where the problems start.
With your lack of admitted knowledge you are best advised to take the issue to your host to resolve really. This isn’t so much a BP or WP issue as a server one and the use of these plugins is a hack to avoid addressing the real issue as far as I can tell, I have encountered all manner of issues setting up LAMP servers and email but have always resolved by correctly installing and configuring mail functions at the server level.
I have a feeling that you simply haven’t configured the plugin with a proper smtp server url to use, I use Gmail for domains on a regular basis configuring the MX records with the main DNS for the domain and have generally no problem using the sendmail programme with WP/BP
You might also be running a mail server and the mx records might not have been set correctly?Also I must add that of all the many threads reporting issues with email the majority are with bluehost.
Open a ticket with Bluehost as their continued issue are tending to become a PITA and they are supposed to be a WP friendly host.
January 20, 2011 at 4:29 pm #103432In reply to: How to operate the subdirectories?
@mercime
ParticipantThis is a WordPress installation issue. You need to resolve your problem at WordPress.org forums before installing BuddyPress.
January 20, 2011 at 3:41 pm #103427sevenos
Memberand, hnla ..
I wouldn’t know that – I have too little knowledge on this matter.
I wouldn’t know WP and BP are using the same email routines..
I hoped something useful from the longest entry on my topic but – you deceived me
January 20, 2011 at 3:08 pm #103426sevenos
MemberI just tried the SMTP plugins you suggested but no matter what I do with it’s settings, it just keeps giving errors…
The below error for example;
Test Message Sent
‘The result was:
bool(false)
The full debugging output is shown below:object(PHPMailer)#878 (45) {
[“Priority”]=>
int(3)
[“CharSet”]=>
string(5) “UTF-8”
[“ContentType”]=>
string(10) “text/plain”
[“Encoding”]=>
string(4) “8bit”
[“ErrorInfo”]=>
string(36) “Could not instantiate mail function.”
[“From”]=>
string(23) “noreply @www.sevenos.net”
[“FromName”]=>
string(5) “81300”
[“Sender”]=>
string(0) “”
[“Subject”]=>
string(44) “WP Mail SMTP: Test mail to sevenos @gmail.com”
[“Body”]=>
string(68) “This is a test email generated by the WP Mail SMTP WordPress plugin.”
[“AltBody”]=>
string(0) “”
[“WordWrap”]=>
int(0)
[“Mailer”]=>
string(4) “mail”
[“Sendmail”]=>
string(18) “/usr/sbin/sendmail”
[“PluginDir”]=>
string(0) “”
[“Version”]=>
string(5) “2.0.4”
[“ConfirmReadingTo”]=>
string(0) “”
[“Hostname”]=>
string(15) “www.sevenos.net”
[“MessageID”]=>
string(0) “”
[“Host”]=>
string(9) “localhost”
[“Port”]=>
int(25)
[“Helo”]=>
string(0) “”
[“SMTPSecure”]=>
string(0) “”
[“SMTPAuth”]=>
bool(false)
[“Username”]=>
string(0) “”
[“Password”]=>
string(0) “”
[“Timeout”]=>
int(10)
[“SMTPDebug”]=>
int(2)
[“SMTPKeepAlive”]=>
bool(false)
[“SingleTo”]=>
bool(false)
[“smtp”]=>
NULL
[“to”]=>
array(1) {
[0]=>
array(2) {
[0]=>
string(17) “sevenos @gmail.com”
[1]=>
string(0) “”
}
}
[“cc”]=>
array(0) {
}
[“bcc”]=>
array(0) {
}
[“ReplyTo”]=>
array(0) {
}
[“attachment”]=>
array(0) {
}
[“CustomHeader”]=>
array(0) {
}
[“message_type”]=>
string(5) “plain”
[“boundary”]=>
array(2) {
[1]=>
string(35) “b1_1470c9ad82e79af6f6f5232da168c73a”
[2]=>
string(35) “b2_1470c9ad82e79af6f6f5232da168c73a”
}
[“language”]=>
array(13) {
[“mailer_not_supported”]=>
string(25) ” mailer is not supported.”
[“provide_address”]=>
string(55) “You must provide at least one mailer is not supported.”
[“execute”]=>
string(19) “Could not execute: “
[“instantiate”]=>
string(36) “Could not instantiate mail function.”
[“authenticate”]=>
string(35) “SMTP Error: Could not authenticate.”
[“from_failed”]=>
string(35) “The following From address failed: “
[“data_not_accepted”]=>
string(30) “SMTP Error: Data not accepted.”
[“recipients_failed”]=>
string(56) “SMTP Error: The following SMTP Error: Data not accepted.”
[“connect_host”]=>
string(43) “SMTP Error: Could not connect to SMTP host.”
[“file_access”]=>
string(23) “Could not access file: “
[“file_open”]=>
string(33) “File Error: Could not open file: “
[“encoding”]=>
string(18) “Unknown encoding: “
[“signing”]=>
string(15) “Signing Error: “
}
[“error_count”]=>
int(1)
[“LE”]=>
string(1) “
“
[“sign_cert_file”]=>
string(0) “”
[“sign_key_file”]=>
string(0) “”
[“sign_key_pass”]=>
string(0) “”
}
The SMTP debugging output is shown below:’January 20, 2011 at 11:00 am #103421In reply to: New theme – now available
pcwriter
ParticipantThe overhaul of the free BuddyLite theme is almost ready. The default style will look much like the theme of http://BuddyLite.com
Here’s a list of the basic theme options that will be included and accessible through a simple admin panel:Maximum Theme Width
Minimum Theme Width
Header Height
Theme Background Image
Theme Background Image Repeat
Theme Background Image Behavior
Theme Background Color
Community Dropdown Menu Label (will be removed in BP1.3 update)
Integrate BP-Adminbar with Main Menu
Select ‘Global Search’ or Standard Buddypress Search
Search Bar in Header or in Sidebar
Sidebar Placement
Main Sidebar Width
Secondary Sidebar Width
Custom CSSI’m also taking time to update both BuddyLite and BuddyBuilder in anticipation of the upcoming release of Buddypress 1.3.
January 20, 2011 at 10:04 am #103420In reply to: AvenueK9.com BP re-launch
Tammie Lister
ModeratorI like the menu drop down and the way it’s reflected in the customised labelled BuddyPress buttons. I’m a sucker for little touches like that. Really nice clean layout too which wins me over from the start. Less plugins more focus on the ones you need is always good I reckon.
January 20, 2011 at 9:57 am #103418In reply to: HOw can i rename a page…..
Tammie Lister
ModeratorDo you mean a page you created or a BuddyPress specific one? https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/ or http://bp-tricks.com/coding/string-replacement-hack-core/ may get you on the right direction if BuddyPress specific. Otherwise it’s just a case of editing the page in your WordPress admin if not a BuddyPress specific page.
January 20, 2011 at 9:52 am #103417quizz
MemberSo what was the end of this story? i’m interested in this plugin and can participate with some $
January 20, 2011 at 9:51 am #103416In reply to: Buddypress for low bandwith communities
Tammie Lister
ModeratorI’m no server expert there probably will be a few along who can assist with the server side maximising for low bandwith. However from a front end point of view I’d strongly advise you consider the following:
1. A minimal theme in the truest sense – the less images the better, the less graphic anything.. backgrounds.. buttons.. icons – the better in this case
2. No plugins / widgets that call external services
3. No extra plugins / widgets that call adverts or images into the theme
4. No slideshows or fancy scripting in the theme you chooseAll of this can make for a plainer site but it sure will benefit you if speed is the key. Also you can still have a good looking theme without the bulk.
January 20, 2011 at 9:41 am #103414In reply to: Please help – Theme broken
Hugo Ashmore
ParticipantPlease don’t post links that are under http auth, it’s pretty pointless.
If you do require help and this is Buddypress related then you will need to post far more detail on what you have done and versions / themes used . Third party themes though can only be tackled in a very superficial manner here, as said, theme support must be sought from the authors in the first instance.
January 20, 2011 at 9:20 am #103412In reply to: Avatars of member not showing in all blogs
January 20, 2011 at 8:10 am #103409In reply to: Filter members by custom fields
bineet chaubey
Memberhi buzz2050
i want to add some sub menu in member page as you show in your attachment,
and filter memebr by role please tell me how we can do this if any code have you
for this scripts . please told me . i am highly appreciated your help.
please tell me how we van set querystring in ajax.php to filter memeber by role and add submenu in member pageplease help me.
January 20, 2011 at 4:15 am #103403In reply to: Please help – Theme broken
Virtuali
ParticipantWell first thing, unless it’s the buddypress default theme, we have nothing to do with other themes, this is a buddypress plugin support forum.
From going to charizmatic.com, it looks like you don’t even have bp installed, if you need help with the theme, go to your theme’s site’s forums there.
January 20, 2011 at 4:08 am #103402Virtuali
ParticipantBuddypress, as mentioned many, many, many times, is wired through the wordpress emails.
Buddypress has absolutely nothing to do with the emails. So don’t blame it on BP, there is nothing bp can do for the activation email really.
As through searching on forums, this issue is rising problems after problem. Bluehost seems to be big with it, so try the “Mail From” plugin.
January 20, 2011 at 2:29 am #103398In reply to: I could use some buddy press advice
roydeanjr
ParticipantFirst, forums are generally part of a group. You cannot create forums outside of the group paradigm unless you install bbpress and integrate bbpress with wordpress. Generally you don’t install bbpress and buddypress because buddypress will take over bbpress when you turn on the forum component in buddypress.
Second, if #1 is true then you have to decide what groups you will create or let your users create the groups. You can create groups for each resort, maybe even each board manufacturer, or board style, etc. You have to make those kinds of design decisions yourself or explain to your members how they can create their own groups.
Once you create a group, part of the creation or administration of the group is the decision to enable the discussion forum. Once the forum is enabled, then discussion can take place under that group. Yes all the forums can be listed in a directory, but once you get some traffic your users will click a forum link or topic link and be taken to the group that the forum belons to.
I hope that helps.
January 20, 2011 at 2:22 am #103397In reply to: Error message on installation
pro102
ParticipantIt looks like this was an insufficient memory… great if the diags utility could catch this next time. Onto new tests with buddypress.
January 20, 2011 at 2:04 am #103395In reply to: Buddypress Template File Corresponding…
MrNiceGuy2
Memberhttp://thenozzle.net/members/mrniceguy/
On that page, I’m just trying to get the dark container that looks very wrong, to have a class or id of “container_single”. Where are you seeing it as that? I see just on normal pages, but I can’t find what the buddypress loops is pulling from to get that “container” class/id. I simply can’t figure out how to add “_single” to the container.
I’ve had this problem even before I installed any buddypress plugins. I’ve edited all the template files, nothing seems to work, very odd.
January 20, 2011 at 1:59 am #103394In reply to: Follow instead of Add Friend
January 20, 2011 at 1:43 am #103393In reply to: I could use some buddy press advice
acaps2007
MemberI’ve been learning buddypress, so maybe I can help? I don’t really understand what you’re asking. Are you asking for good plug-ins? If so, I started by searching WP plug-ins for the term “buddypress” and looked through each of them and installed the ones that fit what I wanted.
You have a fun site by the way!
January 20, 2011 at 12:24 am #103391In reply to: Help! “Sorry, no members were found”
realfoodmedia
MemberOK I reinstalled all the BuddyPress plugin files.
Here are the errors I am getting:
1. I just created a new user called Joe Schmo. I went in as realfoodmedia (my admin account) and added him as a friend.
2. Then I logged out and went back in as Joe and I saw the new friend notification. When I clicked on the notification to see who wanted to be friends with me, there was nothing there. (No friends.)
3. Also no members are showing up in the Member List, and it says no one is online.
How do I fix these errors?
-
AuthorSearch Results