Search Results for 'buddypress'
-
AuthorSearch Results
-
July 28, 2011 at 8:51 pm #117115
In reply to: BuddyPress Compatibility Help
tomcos
MemberSorry about the double post! like i said…site was goin a little crazy on me last night
Thanks so much mercime i really appreciate it and cant wait to show the site once it’s done2 quick questions…
Should I assume that full width pages are a no go?
lol
and will the changes finally show once all the pages have been edited?July 28, 2011 at 8:28 pm #117113@mercime
Participant@ginreviews WP/BP versions? Are you using bp-default child theme, WP/BP Template pack or custom BP theme? Is this a new install or is it an existing install with registration going bonkers recently?
July 28, 2011 at 8:23 pm #117112In reply to: BuddyPress Compatibility Tips
@mercime
ParticipantJuly 28, 2011 at 8:02 pm #117108In reply to: BuddyPress multisite Blog Comment Stream
nicholmikey
ParticipantTried this plugin and it worked ok : https://buddypress.org/community/groups/buddypress-activity-as-blog-comments/
It did not work on sub blogs as it was making bad links for the reply, favorite, and remove favorite buttons. I type this out into my bp-custom.php file and now it all works fine :
`//fix replying to activity streams on sub blogs
add_filter(‘bp_get_activity_favorite_link’,’fix_activity_link’,10,2);
add_filter(‘bp_get_activity_unfavorite_link’,’fix_activity_link’,10,2);
add_filter(‘bp_get_activity_comment_form_action’,’fix_activity_link’,10,1);function fix_activity_link($link,$setting=’none’){
$root = $_SERVER;
$pos = strpos($link, ‘/activity/’);
$length = strlen($link);
$fixed_link = ‘http://’ . $root . substr($link,$pos,$length);
return $fixed_link;
}`July 28, 2011 at 6:59 pm #117097In reply to: Twitter for BuddyPress Poll
modemlooper
Moderatorbumpily bump. Need more feedback.
July 28, 2011 at 6:06 pm #117091In reply to: BuddyPress multisite Blog Comment Stream
nicholmikey
ParticipantI can just remove displaying and entering WordPress comments, display an activity stream for only that blog, and create a text box that submits to the stream, but if there is already a proper way that integrates with WordPress I would prefer that. With my method the dashboard view would show no comments while the site view would show a stream of comments.
July 28, 2011 at 5:19 pm #117088In reply to: BuddyPress Compatibility Help
@mercime
ParticipantJuly 28, 2011 at 5:08 pm #117087In reply to: BuddyPress Compatibility Help
@mercime
ParticipantDownload the BP template files transferred to your active WP theme folder in server down to your computer hard drive.
We start with /activtiy/index.php – open with text editor. At the top of the file, replace
`July 28, 2011 at 1:57 pm #117078In reply to: [New Plugin] BuddyPress Group Forum Extras
Everton
MemberHi
I’ve just installed this plugin and the quote functionality so far. My theme adds the ‘quote’ button, but the quote doesn’t appear in the reply box. Can someone help me fix please?
Thanks
EB
July 28, 2011 at 12:25 pm #117071In reply to: Not Sending Private Message
jabutcher
MemberUpon further investigation I decided to replace the compose.php loaded from BuddyPress Template Pack 1.1.3 with the compose.php template from the default BuddyPress theme.
This fixed the problem.
Thanks to everyone who looked into this problem.
ArtJuly 28, 2011 at 12:03 pm #117069In reply to: adding group fields
4ella
ParticipantI have the same wish , use more 2-3 fields below TITLE and DESCRIPTION and wait until new Group Extras will be released , and use that as the main Group Description page (in wordpress dashboard ADMIN – setup the kind of form , in buddypress admin fill out the form which sends the data to description page to show up another 20-30 fields about every single group.
I’ve seen somewhere here on this forum the code which you can add to the function.php which adds one extra field (text field) to the that group in the first step of group creation below description , it showed up in Groups Description below description field , I have installed as a plugin but it didn’t show up in any place (groups directory-groups page), so I didn’t know how to display that and I have uninstalled it . I don’t remember where you can find it , try to search for that here ” groups extra field, add field groups, etc.July 28, 2011 at 11:05 am #117065Prince Abiola Ogundipe
Participant@Alan, or can someone please help me look at this code to know if something is wrong, have tried it and everything seems ok if the member did not add the “country field” as it shows the link and take you to the edit page, but immediately you input the field “Country” e.g “UK” and save, it breaks both Admin bar and the Sidebar.
July 28, 2011 at 8:22 am #117059In reply to: Reply is not working in Activity page
Brajesh Singh
ParticipantYou seem to be using older version of BuddyPress/ Bp-theme.
Upgrade your BuddyPress(and also the theme if you are using a different theme than bp-default). This is happening because the jquery included in wp3.2 is jquery v 1.6.1(which changed the way some of the properties are accessed).
July 28, 2011 at 8:20 am #117058In reply to: Getting a fatal error. Pls help me.
Brajesh Singh
ParticipantYou will need to upgrade your BuddyPress to 1.2.9.
Upgrade the BP and It will be fixed.July 28, 2011 at 7:31 am #117057katje
MemberThank you Gorges, but I already activated the invite anyone. It needs email addresses; what I want is for users to be able to search for other members on multiple criteria and to invite them. With 10.000 members you don’t want your users to have to scroll through the whole list to find someone.
I’m not a developper but with some reasoning I reckon it must be simple to use the profile form. I put a lot of fields there as required and text becomes links as well. You could let a search and invite feed on the profile information.
Nothing like that available?
And how difficult will it be to create a plugin like that?July 28, 2011 at 7:29 am #117056In reply to: BuddyPress Compatibility Help
tomcos
MemberLol ok so idk what’s going on with the site…but whenever I try to edit my old posts I’m getting a page not found error…so ill fix the two comments above in the morning…till then…here are the URLs

Normal Page:
http://pastebin.com/PrGSEbkdFull-Width Page:
http://pastebin.com/Zev3PuZtgoodnight everyone haha
July 28, 2011 at 7:25 am #117055In reply to: BuddyPress Compatibility Help
tomcos
MemberJuly 28, 2011 at 3:04 am #117050In reply to: Use metadata from members profile in WP posts?
r-a-y
KeymasterUse:
`bp_get_profile_field_data()`:
https://buddypress.trac.wordpress.org/browser/tags/1.2.9/bp-xprofile/bp-xprofile-templatetags.php#L554Pass your field ID and user ID through that function.
See this thread for an example:
https://buddypress.org/community/groups/creating-extending/forum/topic/get-buddypress-profile-field-valueJuly 28, 2011 at 2:05 am #117048r-a-y
KeymasterTry this 3rd-party plugin:
July 27, 2011 at 11:24 pm #117043Prince Abiola Ogundipe
Participant@Alan, i will try it and if i run into any problem , i will let you know.
regards
July 27, 2011 at 9:54 pm #117038In reply to: Press ESC to Cancel Comment for Activity Comments
Tammie Lister
ModeratorThis probably would be better as a feaure request over on trac :
https://buddypress.trac.wordpress.org/
I’m assuming you are looking to get this done as a change to BuddyPress not just a custom edit or plugin right?
July 27, 2011 at 6:19 pm #117031In reply to: autocomplete not functioning when composing message
laujimenez
MemberOk, this thing wont let me edit my last post…anyway, I said that the thing screwing with my autocomplete was the “Buddypress Sitewide activity widget” plugin….but what I didn’t said is that actually is the Buddypress Sitewide activity widget V 1.1.3 was the problem!….I installed the lastest version (1.1.3.1) and the autocomplete works great!

cheers!
July 27, 2011 at 6:02 pm #117029In reply to: autocomplete not functioning when composing message
laujimenez
MemberHello!!
I would like to add something here!
I had the same problem….the autocomplete not working was driving me crazy….really….and after lots of days (and eternal nights) of suffer and horror I found the problem!!!
!!So in my case the cause was a plugin called “Buddypress Sitewide activity widget”…..why?, I don’t really know yet…..but this for all those who need an alternative answer for their autocomplete problems
!Cheers!
July 27, 2011 at 5:28 pm #117025Boone Gorges
KeymasterWhen you activate a BuddyPress-compatible theme, like BuddyPress Default, you will see a Members tab at the top of the screen. That is the public Members Directory, where users can browse or search.
`So no plugins to be able to invite people other than the not working one which says when trying to install that it has not been tested yet for my version of WP?`
There is a plugin called Invite Anyone that provides several for group and site invitations: https://wordpress.org/extend/plugins/invite-anyone/ It is compatible with the latest WP and BP. The only reason it doesn’t list its compatibility in the WP repo is because WP requires me to release a new version of the plugin in order to update its compatibility, and I have no good reason to do this. Without Invite Anyone, group members can only invite Friends to the group.
July 27, 2011 at 3:31 pm #117020In reply to: Allow users to change Theme
rlparker81
MemberThanks, not sure what I was googleing for before but i have now found a buddypress theme switcher plugin
http://premium.wpmudev.org/project/advanced-theme-switcher
however i can’t get it to work and their forums are only for paying members
Still i’m a bit closer then I was before! -
AuthorSearch Results