Search Results for 'wordpress'
-
AuthorSearch Results
-
July 9, 2011 at 2:11 am #116037
In reply to: Notification on Profile Update
Steve
ParticipantHi,
I need the following: https://buddypress.trac.wordpress.org/ticket/2296
Yet WordPress have closed their ticket, can anyone offer some support on this? Where can I add the above code?
I need to know when someone changes their account email and also when someone updates their status.
July 8, 2011 at 11:42 pm #116029In reply to: How to remove option to edit Base Profile info?
danbpfr
ParticipantBy default the only “base” information is the username. This can’t be deleted.
Also why to delete when you can hide or give permission ?For the other field or fiedset YOU added, try some of these plugins
https://wordpress.org/extend/plugins/bp-profile-privacy/
https://buddypress.org/community/groups/bp-privacy/July 8, 2011 at 11:18 pm #116026In reply to: Integration with iBlogPro4
July 8, 2011 at 6:14 pm #116000gregfielding
ParticipantAs a work-around, I wonder if I could use this plugin https://wordpress.org/extend/plugins/buddypress-xprofiles-acl/ to assign roles based on the profile field answer.
Then I could more easily show different sidebars depending on roles.
Not the cleanest way to do it. Has anyone else had trouble with checkboxes?
July 8, 2011 at 5:08 pm #115995r-a-y
KeymasterIt’s a cookie problem that was not fixed in v1.2.
However, it is fixed in v1.3:
https://buddypress.trac.wordpress.org/changeset/4039July 8, 2011 at 4:39 pm #115992In reply to: plazaa – A german BuddyPress community
poolie
Participantwe have relaunched the homepage and a lot more.
you can also vote for us at the wordpress showcase https://wordpress.org/showcase/plazaa/
July 8, 2011 at 11:28 am #115977In reply to: Dropdown Navigation
Prince Abiola Ogundipe
Participanthi, you can try this plugin am using : https://wordpress.org/extend/plugins/multi-level-navigation-plugin/
see it in action here : http://www.naijaping.com/
hope it helps
July 8, 2011 at 4:19 am #115971ronia
Participant@stwc sorry to bother you again. I saw your site and thats cool!
One thing, I got that snippet working but how to make “Reply” vanish selectively for the blog posts and blog comments ?Another thing, have you been able to add “Favorite” button in the blog post itself so that there is something like “Like”(wordpress.com Like not FB) below the blog posts itself also?
July 8, 2011 at 2:19 am #115967In reply to: BP Admin Bar overlaps my dashboard
astromono
Participant@mercime It looks the same. I deactivated all plugins both on the network and in each individual site (I have 3 sites in my network). Made sure the default Buddypress theme was activated (only on one site) and Buddypress on network activate.
I believe you had told me to follow these steps before in the WordPress forums before, but it didn’t work that time either. What could be causing this issue?
July 7, 2011 at 11:28 pm #115954pcwriter
ParticipantOops… forgot the link

https://buddypress.trac.wordpress.org/ticket/2685July 7, 2011 at 6:13 pm #115913In reply to: No one is able to ‘reply’ since the last upgrade
Gossy Uk
MemberI downgraded wordpress with my backup before the upgrade and voila. Everything works perfect again
July 7, 2011 at 5:44 pm #115909In reply to: No one is able to ‘reply’ since the last upgrade
Gossy Uk
MemberI have downgraded my buddypress Install to see if thats where the problem lies, however it still persists. I am not running Buddypress 1.2.8 however the reply doesnt work.
So i presume this has to do with the WordPress aspect.
Everything works fine in the default theme however.
July 7, 2011 at 3:34 pm #115897In reply to: BuddyPress 1.3
@mercime
Participant8 active tickets remaining https://buddypress.trac.wordpress.org/roadmap
Feel free to help.July 6, 2011 at 11:44 pm #115886In reply to: BP Admin Bar overlaps my dashboard
astromono
Participant@Paul No, I haven’t customized my dashboard theme. I’m actually using a child theme based off from the default that comes with Buddypress. The screenshot below shows what’s going on, except now I’m using WP 3.2:
https://buddypress.trac.wordpress.org/attachment/ticket/2096/adminbar.tiff
@hnla I was able to reach my Network Admin dashboard by going to the dropdown menu as you mentioned, however I had to go “Inspect Element” in Safari and then remove “padding:0;” temporarily from the wp-admin-bar div.July 6, 2011 at 9:51 pm #115878aces
Participanton the wordpress plugins page?
July 6, 2011 at 5:44 pm #115868In reply to: A quick note about WordPress 3.2
jzvestor
Memberanyone using the genesis framework from studiopress & genesisconnect with need to update genesisconnect as well. Then it works!
July 6, 2011 at 5:27 pm #115867Boone Gorges
KeymasterCool, can’t wait to see the results! My Import From Ning importer https://wordpress.org/extend/plugins/import-from-ning/ will handle content, but it’s not really built to scale to your network size. (Though you could peek inside the plugin to get a sense of how such a scalable import could work.)
Good luck with the last steps! Looking forward to learning more.
July 6, 2011 at 4:33 pm #115863In reply to: A quick note about WordPress 3.2
John James Jacoby
Keymaster@stevieg – Could be a memory issue. You should be disabling all plugins before doing a core WP update.
July 6, 2011 at 4:25 pm #115862gregfielding
ParticipantHere’s the article… http://yoast.com/wordpress-rel-author-rel-me
July 6, 2011 at 4:20 pm #115860In reply to: Change default notification settings
mistercyril
ParticipantI found a post written by Boone ( http://bpdevel.wordpress.com/author/boonebgorges/ ) where he says something about replacing all references to “$current_user” with “$bp->displayed_user” in order to allow super admins to have access to user settings.
I am using BuddyPress v.1.2.8 and found this code in bp-core-settings.php…
/***** NOTIFICATION SETTINGS ******/function bp_core_screen_notification_settings() {
global $current_user, $bp_settings_updated;$bp_settings_updated = false;
if ( $_POST ) {
check_admin_referer('bp_settings_notifications');if ( $_POST ) {
foreach ( (array)$_POST as $key => $value ) {
update_user_meta( (int)$current_user->id, $key, $value );
}
}$bp_settings_updated = true;
}add_action( 'bp_template_title', 'bp_core_screen_notification_settings_title' );
add_action( 'bp_template_content', 'bp_core_screen_notification_settings_content' );bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
}function bp_core_screen_notification_settings_title() {
_e( 'Notification Settings', 'buddypress' );
}function bp_core_screen_notification_settings_content() {
global $bp, $current_user, $bp_settings_updated; ?><form action="loggedin_user->domain . BP_SETTINGS_SLUG . '/notifications' ?>" method="post" id="settings-form">
<input type="submit" name="submit" value="" id="submit" class="auto" /><?php
}
Can someone help me out with implementing this?
Thanks,
C.July 6, 2011 at 4:14 pm #115858In reply to: ETA on Buddypress 1.3 – when will it be released?
Eyal
Memberthat is true, buddypress is free same as most of plugins out there. and after being around wordpress for a while i truly believe that it should stop. Nobody should work for free. i believe that a decent price for a great plugin like Buddypress will not prevent people from using it. as well as many other great plugins out there that are free and disappear after one or two updated of wordpress because not enough support. then we have to spend crazy amount of time to look for a replacement for those plugins. (i am dealing with this everyday).
i personally appreciate you people giving your time to create such great things. and i would help in any way i can.
)))))July 6, 2011 at 3:08 pm #115855In reply to: A quick note about WordPress 3.2
stevieg
MemberI’m runnin a few sites that use BuddyPress (with template pack) and a child of twentyten as the theme. When I attempt a WP 3.2 upgrade it says downloading zip but then just stops. It is only sites that are running BP that are affected this way. Has anyone else encountered this issue?
July 6, 2011 at 12:51 pm #115850In reply to: A quick note about WordPress 3.2
John James Jacoby
KeymasterNo, you don’t. There won’t be one.

The issues everyone are having are not with BP. They are with plugins or themes that had the same issue BP did (outdated jQuery) or are issues with browser cache. I personally confirmed this on 5 user sites in the past 2 days, and BP has been woking perfectly.
July 6, 2011 at 12:40 pm #115849In reply to: A quick note about WordPress 3.2
Erlend
ParticipantAlright thanks. Sounds like I might want to wait for the 1.2.9b though
July 6, 2011 at 12:17 pm #115847In reply to: A quick note about WordPress 3.2
John James Jacoby
KeymasterUpdates are cron’ed. You should be able to force check with the button in your updates screen.
-
AuthorSearch Results