Search Results for 'buddypress'
-
AuthorSearch Results
-
March 29, 2010 at 9:41 pm #70721
dwcouch
ParticipantFrom the Plug-In:
You will need to change the HTML structure in the BuddyPress templates that you copied into your theme to match the structure in your page.php or index.php file. The files that you need to edit are as follows (leave out any folders you have not copied over in step two):
* /activity/index.php
* /blogs/index.php
* /forums/index.php
* /groups/index.php
* /groups/create.php
* /groups/single/home.php
* /groups/single/plugins.php
* /members/index.php
* /members/single/home.php
* /members/single/plugins.php
* /registration/register.php
* /blogs/create.php
* /registration/activate.php
March 29, 2010 at 8:46 pm #70713In reply to: WP-FB connect profile.
Bowe
ParticipantCheck the settings page of wp-fb connect, you should tick a box which enables some buddypress stuff and fixes the problem with usernames.
March 29, 2010 at 7:54 pm #70706In reply to: BP Groups – Admin leaves or demotes self
r-a-y
KeymasterAre you using the latest version of BP?
There was a ticket about this:
https://trac.buddypress.org/ticket/1753
If this problem still persists, please reopen the ticket.
You can login to Trac with the same login credentials you use here on bp.org.
March 29, 2010 at 7:43 pm #70703In reply to: Tweetstream (twitter plugin) Beta testers needed!
Peter Hofman
ParticipantNew version! Version 1.2.2 just released.
Grab it over here: https://wordpress.org/extend/plugins/tweetstream/
* Removed wordpress cron, and replaces with own cron code
* Performance fixed
SUPPORT: http://faboo.nl/bugs/tweetstream/
Not all bugs are fixed yet but this release had to be done to prevent buddypress upgrading issues and facestream issues.
March 29, 2010 at 7:37 pm #70702In reply to: [Resolved] CubePoints and BuddyPress Intregration?
Tosh
Participant@dre1080 this is something I’d like to see myself.
I have points given for the following, and it’s all working great!
blog posts, comments, logging in daily, forum post/creation (simplepressforum), update/reply (buddypress), creation of a group (buddypress).
March 29, 2010 at 6:50 pm #70699mrjarbenne
ParticipantThanks r-a-y, this potentially answers my https://buddypress.org/forums/topic/creating-tos-hurdles forum post. Need to investigate further.
March 29, 2010 at 6:47 pm #70698r-a-y
Keymaster@birdy43
Try logging into the WP backend. Navigate to “BuddyPress > General Settings”.
Under “Full Name Field Name”, change this from the default “Name” to whatever you want.
You need to create a custom function for outputting your questions and another one to validate your questions.
function my_custom_questions() {
// your questions would go here - would be an input field of some kind
// eg.
echo '<label for="my_question">Please enter something for this new field</label>';
echo '<input type="text" name="my_question" id="my_question" value="" />';
}
add_action('bp_before_registration_submit_buttons', 'my_custom_questions');
function my_custom_validation() {
// here you'd check the submitted input fields, you'd probably do a check to see if the question is blank, if not return an error message
// would be something like this:
global $bp;
// checking if an input field of "my_question" is blank
if ( $_POST['my_question'] == "" ) {
$bp->signup->errors['my_question'] = 'You must type in something for the field "my_question".';
}
}
add_action('bp_signup_validate', 'my_custom_validation');March 29, 2010 at 6:29 pm #70694In reply to: 1.2.3 Upgrade Broke Site
jivany
ParticipantSee this post for a list of plugins that potentially will lead to a failure over an update:
https://buddypress.org/forums/topic/plugin-hall-of-shame-plugin-devs-please-read
March 29, 2010 at 6:28 pm #70693In reply to: buddypress = Content Aggregator
idotter
Participantaggregated content should be on per user base …. that means every user should be able to insert its data in admin panel. his/her content should be shown in activitystream and on profilepage
March 29, 2010 at 6:22 pm #70691In reply to: buddypress = Content Aggregator
xspringe
ParticipantI’m a bit confused: what exactly is missing from the lifestream plugin that it is not suited for this purpose?
March 29, 2010 at 6:13 pm #70690In reply to: BuddyPress Membership Sites
peterverkooijen
ParticipantThis plugin (s2Member) now has Buddypress support. Haven’t tested it yet, but it looks very promising.
March 29, 2010 at 6:08 pm #70689In reply to: buddypress = Content Aggregator
idotter
ParticipantWhat i need is simple aggregation (Tweetstream and Facestream provide addtitional functionality but afford some for endusers “complicated” authorization).
Instead of this two-way-synchronisation i’d like to see support for delicious, google bookmarks, google reader, google docs, dropbox, wuala …
March 29, 2010 at 6:02 pm #70688In reply to: Activity feed on index rather than blog?
ibrooklynite
ParticipantYou need to update the homepage in the WP Admin Settings this is exactly what I did for my BuddyPress site http://ipadalicious.com. Login into your admin area: Go to settings and Click on reading – and under Front page displays page. Then:
1. Select A static page (select below)
2. Then select Activity Stream in the Front page: drop down list
3. Then click save changes and you should be good to go.
Hope this helps.
March 29, 2010 at 6:00 pm #70686In reply to: Integrate Existing WP theme and Body of Buddypress
@mercime
ParticipantTested it once, BP Template Pack activated does include the basic CSS necessary to style the different core components – http://svn.wp-plugins.org/bp-template-pack/trunk/bp.css
You could customize template pack’s css in your WP theme’s style.css to match say, link or background colors to match your theme
Btw, check the source view of your BP-enabled pages and see if the link to the bp.css from template pack is rendered there, it should be.
March 29, 2010 at 5:55 pm #70684In reply to: Upgrading from RC-1 to RC-2 or 1.0 Release
r-a-y
KeymasterUpgrade to BP 1.0.3:
https://downloads.wordpress.org/plugin/buddypress.1.0.3.zip
Then follow the rest of the steps.
As always, make a backup of your DB and filesystem before proceeding.
March 29, 2010 at 5:53 pm #70683In reply to: oEmbed for BuddyPress plugin – out now!
r-a-y
KeymasterThis is working for me.
Can you try deactivating the plugin, deleting the plugin folder and then downloading and activating the latest version.
March 29, 2010 at 5:48 pm #70682richard1987
MemberLogin to your WordPress dashboard and click on BuddyPress on the left hand side. You will see a link called Profile Field Setup. This is where you create and edit your questions.
Hope that explains what you are looking for
March 29, 2010 at 5:13 pm #70675In reply to: Buddypress needs "Site-Wide Editor" User Role
paulhastings0
Participant@Andrea_r: Now that I think about it, the “Site-wide Admin” user role is actually something implemented by WPMU and not BP. So this is really more of a question to integrate “Site-wide Editors” into the WPMU core rather than the BP core.
So how would this “Site-wide Editor” role be affected by WP 3.0?
March 29, 2010 at 5:00 pm #70674bpisimone
ParticipantYes indeed! Works as advertised!
March 29, 2010 at 4:53 pm #70672In reply to: oEmbed for BuddyPress plugin – out now!
arjdan
ParticipantHi, I’ve wordpress mu + buddypress last version and I try to use this plugin. I’ve installed without problem but it seems doesn’t work. I also try to rename the plugin directory.
For example when I insert a url like “http://www.youtube.com/watch?v=_8OAF2cU6Xc” in the activity stream it remains only link. Like this http://madeintorino.com/members/admin/activity/1138
How can I do?
thanks
March 29, 2010 at 4:29 pm #70669In reply to: BuddyPress Membership Sites
Andrea Rennick
Participant“we are hoping the WP3.0 convergence will be a real one…”
I can assure you, it is a “real” one. All of the functionality of MU is retained in 3.0. you know you can get a beta version,. right?
As to if it works better with wp wishlist…. like I said, the functionality is the same. The merging will force the plugins devs to account for the network of sites being enabled.
March 29, 2010 at 4:27 pm #70668In reply to: Integrate Existing WP theme and Body of Buddypress
Andrea Rennick
Participant“Am i missing something? “
Yes. As stated in a few threads, the extra bp folders that are added to your theme, need to be edited. You have to open up those files, look for the div=content and change them to match your exisiting theme.
It’s mostly copy& paste grunt work. no css edits, just changing/adding any needed divs.
March 29, 2010 at 3:47 pm #70665In reply to: buddypress = Content Aggregator
gpo1
ParticipantThere’s tweetstream, facestream & bplink in plugins that covers most needs.
I was looking forward for lifestream.but those plugins cover it!
March 29, 2010 at 3:45 pm #70664modemlooper
ModeratorI am still confused as to what you are trying to accomplish. Do you want a full browser width admin bar but keep the title and links the same width as the page content? If so you don’t need to add a div. #wp-admin-bar is the full width of the browser. #wp-admin-bar .padder is coded to scale.
March 29, 2010 at 2:30 pm #70658In reply to: buddypress = Content Aggregator
idotter
ParticipantAre there any other people interested in this feature, so please vote here or contact me through email. I’m in desperate need of this function … and will have a look for a dev .
-
AuthorSearch Results