Search Results for 'buddypress'
-
AuthorSearch Results
-
April 13, 2009 at 10:09 am #42520
Oliver Wrede
ParticipantThere is no privacy-related plugin in either /plugins/ or /mu-plugins/ anymore.
What I have found out in the meantime is that after the movement of the buddypress plugin to the /plugin/ directory – I had to manually enable it on the top-level site. It also does appear as a regular plugin an ALL other sites (which feels flawed, as those sites should not list this plugin as “inherited option”).
The other sites get the standard MU-Admin bar. If I enable the BuddyPress plugin on that sites manually, I do get the BP-Admin-Bar again and it seems that their updates are being shown on the top-level site again. This feels like I need to got through all of the MU blogs an enable the BuddyPress Plugin manually.
From my conceptual understanding I think this can’t be the intended way – a BP installation should be globally – not per blog.
April 13, 2009 at 8:49 am #42518In reply to: XMLRPC support in BuddyPress with BPDEV XMLRPC
nicolagreco
Participantxmlrpc is not just trackback

anyway trackback for group could be cool
April 13, 2009 at 8:16 am #42516In reply to: Welcome Pack update request
Paul Wong-Gibbs
KeymasterHi Wythagy
The newest version requires WPMU 2.7 branch which is still in development (http://svn.automattic.com/wordpress-mu/branches/2.7/) as well as the latest BuddyPress (by which I mean the BuddyPress SVN trunk https://svn.buddypress.org/trunk).
If you are using BP RC1, then Welcome Pack doesn’t work full stop. Could you clarify what versions you are using so I can check stuff out? Thanks.
April 13, 2009 at 7:07 am #42511In reply to: Slip to catologies management
Burt Adsit
ParticipantYou have a blog that you allow people to have the role of Author. You want to restrict your authors to posting in certain categories only? Buddypress doesn’t have this capability but I’m sure you will be able to find such a plugin in the wp plugin directory: https://wordpress.org/extend/plugins/
April 13, 2009 at 6:20 am #42507In reply to: Welcome Pack update request
Wythagy
ParticipantWell I got it activated by replacing…
require_once( WP_PLUGIN_DIR . '/buddypress/bp-core.php' );<br />with this one:
require_once(WP_CONTENT_DIR . '/mu-plugins/bp-core.php');<br />but, I don’t see any options or anything on the admin side. I’m assuming some constants or global variables must have changed since I am using the latest release of BP…does anyone have an updated version of this plugin that works?
April 13, 2009 at 6:08 am #42505In reply to: Welcome Pack update request
Wythagy
ParticipantOkay so I have the latest BP, why am I getting…
Warning: require_once(/html/wp-content/plugins/buddypress/bp-core.php) [function.require-once]: failed to open stream: No such file or directory in /html/wp-content/plugins/welcome-pack.php on line 14
Fatal error: require_once() [function.require]: Failed opening required \\\\\\\’/html/wp-content/plugins/buddypress/bp-core.php\\\\\\\’ (include_path=\\\\\\\’.:/html/wp-content/plugins/welcome-pack.php on line 14
April 13, 2009 at 6:00 am #42504In reply to: XMLRPC support in BuddyPress with BPDEV XMLRPC
hyrxx
Participantsorry i still dont understand exactly what it is this will enable, i kinda understand how xmlrpc works for wordpress to enable trackbacks but what will this do for us and buddypress??
April 13, 2009 at 4:01 am #42497In reply to: BuddyPress in /plugins/ not /mu-plugins/ from r1303+
modemlooper
Moderatoruhhg. Wrecked my member theme. But I must say the structure is way better.
April 13, 2009 at 3:56 am #42496adv_user
ParticipantOk!! Then it is excellent. Because for this feature above, there is a plugin (WP):
http://www.kriesi.at/archives/wordpress-plugin-my-favorite-posts
April 13, 2009 at 12:34 am #42492In reply to: BuddyPress Showoff: Post your links
mypop
ParticipantA Social Networking site to provide support, training and personal websites/ blogs for a new Party Plan / MLM business promoting the partyon brand from on-group.
proto-col is currently the fastest growing cosmetics and skincare brand in europe with celebrity endorsements from Jennifer Aniston, Sarah Michelle Geller, Lucy Liu, Uma Thurman, Dame Judi Dench, Carol Vorderman, Trinny Woodall, Nicky Haslam
(still in beta..)
April 12, 2009 at 11:42 pm #42489In reply to: Sitewide forums, stop showing group forums…
mypop
ParticipantHow did you create that page: http://delsolownersclub.com/discussions
That’s exactly what I want to do on my site.
I’ve got @Burtadsit’s bbGroup plugin up and running.
How did you integrate it into your buddypress theme?
Is it a ‘page’ in the root blog or a special page?
Thx, Gordon
April 12, 2009 at 11:05 pm #42488Oliver Wrede
ParticipantOk. Crated ticket here: https://trac.buddypress.org/ticket/669
April 12, 2009 at 10:00 pm #42485In reply to: How to Uninstall Buddypress?
edliu
ParticipantThanks a lot Nicola
April 12, 2009 at 9:24 pm #42484In reply to: Excerpt function in RC2
Burt Adsit
ParticipantI created a function that lives in the BP_Activity_Activity class that gets recent group activity. I uploaded it as a patch in trac https://trac.buddypress.org/ticket/668
get_sitewide_activity() returns all sorts of activity not related to that group. The new function that I uploaded gets just the activity for the specified group. If you apply that patch to the bp-activity-classes.php file and build some template php around it then you’ll get your activity display.
$activity = BP_Activity_Activity::get_activity_for_group( $site_groups_template->group, 2 );
That call above would work in the group directory template file. You’ll have to build something to display the returned $activity items like the site wide activity widget does.
See bp-activity-widgets.php for a guide. This little template tag below displays some raw unformated activity.
function my_the_site_group_activity($limit = 2){
global $site_groups_template;
$activity = BP_Activity_Activity::get_activity_for_group( $site_groups_template->group, $limit );
foreach ((array)$activity as $item){
echo apply_filters( ‘bp_activity_content’, bp_activity_content_filter( $item[‘content’], $item[‘date_recorded’], ”, true, false, true ) );
}
}
You can put that fn in your bp-custom.php file and try it out. I just stuck it in a div under the description tag in groups-loop.php for testing.
April 12, 2009 at 9:17 pm #42480In reply to: How to Uninstall Buddypress?
nicolagreco
Participant1) deactivate the plugins
2) removing them
3) remove themes
OPTIONAL:
4) Remove wp_bp_* tables
Say hello to BuddyPress
April 12, 2009 at 9:16 pm #42479nicolagreco
Participantreport it in the trac
April 12, 2009 at 8:16 pm #42474In reply to: Add fields to wp_users
Jeff Sayre
ParticipantPeter-
I realize that you are not getting the answers you desire. You must have a sufficient understanding of and comfort level with PHP before you can delve too deeply into hacking your own solutions or coding your own theme templates. Otherwise, you need to use the stock WPMU and BuddyPress install and then customize with any plugins and 3rd-party themes that may be useful.
Since we do not have any idea of your particular coding skills, we are trying to point you in the right direction. Please realize that beyond a certain point, we cannot help you write your own custom code.
We all started at the beginning when it came to coding and then had another learning curve when it came to understanding the inner workings of WordPress and BuddyPress. It can be frustrating along the way but it is indeed possible to accomplish!
Here are a few more tips:
- Since you do seem to be wanting to group all user data within stock WP tables, you should search the WP and WPMU forums and ask your questions there
- Visit these WP Codex pages to help shed more light:
- https://codex.wordpress.org/Function_Reference/wpdb_Class
- https://codex.wordpress.org/Function_Reference
- Google for tips on learning data-driven PHP coding
- Hire a 3rd-party developer who can do the work: hacking files directly or create a plugin that will accomplish what you’re after
Please hang in there and don’t give up hope.
April 12, 2009 at 8:05 pm #42473In reply to: Wildcard DNS and SVN
jtbailey
ParticipantCONTINUED…
…and everything seems to work:
A /home/jbailey/www/html/wp-content/plugins/buddypress/bp-friends.php
etc… etc… etc…
…Checked out revision 1324.
But when I check the plugins folder, Buddypress isn’t there. (I’m using Coda, by the way)
First time using subversion, so I don’t really know what I’m doing.
April 12, 2009 at 8:03 pm #42472In reply to: Wildcard DNS and SVN
jtbailey
ParticipantI don’t know why this keeps cutting my post in half, I’ll give it one more try:
I’m also having trouble with the svn, I do this:
svn co https://svn.buddypress.org/trunk/ /home/jbailey/www/html/wp-content/plugins/buddypress/
April 12, 2009 at 8:02 pm #42471In reply to: Wildcard DNS and SVN
jtbailey
ParticipantWhoops, it cut me off… I meant to say:
I’m also having trouble with the svn, I do this:
`svn co https://svn.buddypress.org/trunk/ /home/jbailey/www/html/wp-content/plugins/buddypress/
April 12, 2009 at 8:00 pm #42470In reply to: Wildcard DNS and SVN
jtbailey
ParticipantI’m also having trouble with the svn, I do this:
svn co https://svn.buddypress.org/trunk/ /home/jbailey/www/html/wp-content/plugins/buddypress/
April 12, 2009 at 7:38 pm #42469In reply to: Add fields to wp_users
peterverkooijen
ParticipantThat is exactly what usermeta is for.
usermeta contains a lot of very cryptic data about bb_capabilities and blog roles/functionality, most from test members I’ve already deleted from the system. What am I supposed to do with that?!
The WordPress Codex has lots of useful information, but very little about the database structure, how to form queries to pull up that data and where these queries are in the WordPress code.
There is a section on the database structure, but it\’s about version 2.5. I know some fundamental changes were made since that version. It’s not relevant for WPMU and Buddypress anyway.
Basically I’m trying to figure out how to keep a full-fledged members database at the heart of WordPress, with common fields like name, address, company, title, etc., that I can tap into for other scripts. Static data that doesn’t interfere with other functionality in WP.
Has nobody ever done that? Is it impossible?
Should I create a seperate members database outside WordPress that somehow communicates/syncs with WordPress?
April 12, 2009 at 7:10 pm #42465In reply to: XMLRPC support in BuddyPress with BPDEV XMLRPC
nicolagreco
ParticipantYep i’ll do that for sure

but i’ve to finish it first
For now group component has almost complete support
April 12, 2009 at 7:03 pm #42463In reply to: Excerpt function in RC2
Burt Adsit
ParticipantThanks for the css. I haven’t tried it yet. Got sidetracked. Does any of that fix the overflow of text problem? If so then post the fix in trac as a patch or comment here: https://trac.buddypress.org/ticket/665
The problem with the sitewide activity is that you can get all the activities you want but it’s not really formatted for easy detection of specific group activities. The only indication that it’s from a specific group is the bp_activity_sitewide table fields ‘primary_link’ and ‘component_name’.
The component_name will be ‘groups’ and the primary_link will be something like this: http://ourcommoninterest.dev/groups/public
Take a look at bp-activity-classes.php get_sitewide_activity()
You can’t just make a call to a canned function with some parameters and get stuff for a specific group.
April 12, 2009 at 6:42 pm #42461In reply to: Securing components from non logged in users
trcwest
ParticipantYes i tried burtadsits code in my bp-custom.php but no joy.. just get a few php errors in my header..
Warning: Cannot modify header information – headers already sent by (output started at /home/ourbour/spotskenya/wp-content/plugins/buddypress/bp-custom.php:9) in /home/ourbour/spotskenya/wp-content/plugins/wordpress-mobile-plugin/wordpress-mobile.php on line 1658
Warning: Cannot modify header information – headers already sent by (output started at /home/ourbour/spotskenya/wp-content/plugins/buddypress/bp-custom.php:9) in /home/ourbour/spotskenya/wp-content/plugins/wordpress-mobile-plugin/wordpress-mobile.php on line 1659
Warning: Cannot modify header information – headers already sent by (output started at /home/ourbour/spotskenya/wp-content/plugins/buddypress/bp-custom.php:9) in /home/ourbour/spotskenya/wp-content/plugins/wordpress-mobile-plugin/wordpress-mobile.php on line 1660
Is there anything else that could do this.. im sure i ahve come accros a plugin from nicola??
i also tried Mspecht one in <?php ?> but it didnt work either??
-
AuthorSearch Results