Search Results for 'buddypress'
-
AuthorSearch Results
-
February 9, 2011 at 4:55 pm #105018
pluggyboy
MemberI had the same problem with jcarousel and buddypress, and paid a few dollars over at wpquestions to get the fix, which involved editing a line of code in a buddypress js file which handles easing. The full answer is here if anyone else gets stuck: http://wpquestions.com/question/show/id/1615
hth
February 9, 2011 at 4:34 pm #105017In reply to: OpenSocial for BuddyPress
modemlooper
Moderator@boonebgorges BuddiPhone is actually a BP component plugin. It creates a slug /mobile. I would love to use REST and make it native, then I could use the hardware – image uploads – contact lists etc. I messed with this plugin a bit https://wordpress.org/extend/plugins/json-api. BuddyPress json post / get would be killer.
February 9, 2011 at 4:27 pm #105016In reply to: OpenSocial for BuddyPress
Boone Gorges
KeymasterYeah, @modemlooper what are you using for your iPhone app in the absence of REST? Or are you requiring a BP plugin to make it work?
February 9, 2011 at 4:21 pm #105015In reply to: OpenSocial for BuddyPress
modemlooper
ModeratorDrool REST api
February 9, 2011 at 4:14 pm #105014In reply to: OpenSocial for BuddyPress
Boone Gorges
KeymasterHey Carl – Here are a couple considerations.
– WordPress (which BP runs on top of) already has support for XML-RPC. Here’s the spec: https://codex.wordpress.org/XML-RPC_wp Of course, the details of this spec are not much good for BuddyPress, since for the most part, BuddyPress data objects are different from WP data objects. But the gateways are already there for working with XML-RPC.
– That said, the kind of system-to-system talking that would be appropriate for BP would be much better suited to the simplicity of a REST gateway (as opposed to the generally one-to-one, client-to-server relationship that WP’s XML-RPC support was built for – eg the use case of native Android apps communicating with a WP installation).
– Neither WP nor BP has anything built in for REST support, so you’ll be starting with a clean slate (that is both good news and bad news!). There have been a few add-ons that might be good places to start. The one I’ve used in the past is called WP-RESTful https://wordpress.org/extend/plugins/wp-restful/. It’s a nice plugin, but it also has a huge amount of overhead, in particular with a full implementation of oAuth.
– In the very simplest terms, the very easiest way to set up a REST endpoint in WP is to intercept a certain kind of URL query and interpret the POST data. Here is about the most stripped down API possible:
`function bbg_api_listener() {
global $wp;if ( $r = $wp->request ) {
$ra = explode( ‘/’, $r );
if ( $ra[0] == ‘restserver’ ) {
// Do some stuff with the $_POST
die();
}
}
}
add_action( ‘wp’, ‘bbg_api_listener’, 1 ); // Ensure that the request is parsed before any WP front-end stuff, but after the core of WP is loaded`In this case, I am assuming that requests will go to example.com/restserver. From there it’s a matter of unpacking the POST action, etc.
– As for outgoing requests, WP has a pretty nice built-in HTTP library called WP_Http. Here is a nice tutorial: http://planetozh.com/blog/2009/08/how-to-make-http-requests-with-wordpress/ It’s a wrapper for cURL with some graceful fallbacks.
– For something to go into the core of BuddyPress it needs to be really flexible, especially in terms of authorization (this is part of the problem with WP-RESTful and its reliance on oAuth). Keep that separation in mind when you’re crafting something.
Can’t wait to see what you come up with. As you know, I’m really interested in this project and will be excited to play along.
February 9, 2011 at 3:46 pm #105012In reply to: OpenSocial for BuddyPress
Carl Hall
ParticipantThanks for the reply, Paul. I’ll try to learn the API to BP well enough to offer some patches related to service endpoints. I prefer to use REST. Do you have any suggestions or preferences?
February 9, 2011 at 2:20 pm #105009In reply to: @ mention notification
randomdude
MemberFor extra information i’m using WordPress 3.0.5 and Buddypress 1.2.7
Also noticed that there is a system for @mention notifications to be sent as an email. Is there a way to edit this to also show in the admin bar?
February 9, 2011 at 2:06 pm #105006In reply to: New Buddypress Theme: Custom Community – 1.0
Sven Lehnert
ParticipantHi @folkertattema, please check out the forum for support, http://themekraft.com/forums/.
It’s my every second answer in this thread. @hnla or @mercime, could you close this topic please? I would really appreciate it.
Thanks SvenFebruary 9, 2011 at 1:45 pm #105005In reply to: New Buddypress Theme: Custom Community – 1.0
folkertattema
MemberI use custom community theme on http://www.heroisme.nl but there are some missing pages when clicking on community items. Is there a solution for this?
February 9, 2011 at 1:21 pm #105003camaleonw
MemberActually is the admin panel which goes blank with a Server error message, but when I go to the website I can see buddypress working in spanish perfectly, may be I have to upload translation file .mo to another folder or change some script somewhere, any idea? I’m using a free hosting but has all the features enabled.
February 9, 2011 at 12:44 pm #105000In reply to: New Buddypress Theme: Custom Community – 1.0
Sven Lehnert
ParticipantThanks, we most enjoy such a feedback!
February 9, 2011 at 11:14 am #104998In reply to: Ant release date set for BP1.3?
pcwriter
ParticipantThat’s exactly what I was going to do.

That way, if (and when) things go haywire, one can revert back to a previous version to help track down the impact changes to BP have had in a theme, and what needs to be fixed.February 9, 2011 at 11:00 am #104994In reply to: New Buddypress Theme: Custom Community – 1.0
tertitten
MemberThis theme is really great!
I love it, and use it on my site.
Thanks allot!
February 9, 2011 at 10:36 am #104993In reply to: Ant release date set for BP1.3?
pcwriter
ParticipantThanks for the input guys! And hnla is right, I had neglected to account for the refactoring time required by JJJ. My bad

I also have a test site running WP3.0.* & BP1.3 trunk (that needs to be updated again this weekend as per the above suggestion) and themes are working OK so far there. So, I guess I’ll continue with updates on that install.February 9, 2011 at 9:27 am #104990In reply to: Ant release date set for BP1.3?
Hugo Ashmore
Participantbut it’s still prone to being buggy. I’ll say

It’s reasonably stable for judicious development on while mentally noting areas that appear buggy, but one caveat , progress with it’s development is fast and furious :0 so update your repo checkout often to keep up with fixes as I experienced recently.
@DJPaul can you just confirm or settle that confusion on what platform 1.3 will require as far as I’m aware it’s simply the WP 3.* stream rather than 3.1
Edit// hmm just viewed that twitter link, slightly confused now. I have 1.3 albeit a trunk checkout prior to John Jame’s changes that runs on 3.0.4 what has changed or did it really never run ‘fully’ on 3.*. Also wasn’t aware Nacin was a BP developer how is it he knows better than you what BP will run on
February 9, 2011 at 8:54 am #104989In reply to: New Buddypress Theme: Custom Community – 1.0
Sven Lehnert
ParticipantHi chrono1012, Thanks for your interest.
Please use the support forum: http://themekraft.com/forums/ to find your answers. Thanks SvenFebruary 9, 2011 at 8:46 am #104988In reply to: Different logo image for some categories
lkrywko
MemberMy bad. Didn’t mentioned that I use BuddyPress Default 1.2.7 theme. And I want, that logo change, in that theme. Is this right place for my question?
February 9, 2011 at 8:34 am #104987In reply to: OpenSocial for BuddyPress
Paul Wong-Gibbs
KeymasterYou will need to add such things to BuddyPress, yes. If you come up with any good patches for core, I’d love to look at them.
February 9, 2011 at 6:19 am #104979In reply to: Ant release date set for BP1.3?
Hugo Ashmore
ParticipantAnd I thought BP 1.3 just required 3.*
I have a test install of BP 1.3 running on WP 3.0.4 and another running 1.3 on WP 1.3 RC 2
@DJPaul will need to confirm that comment in the thread you link to.
As for release date, you should note the blog post by John James where he announced he was proceeding with some major refactoring of the core, the open tickets is not really indicative of the amount of work left to complete with this particular cycle, I doubt that 1.3 will be ready this side of Feb and ought to go to a RC stage for a little more rigorous testing for this particular release.
I would have thought regardless of release dates one can and should be starting to test ones themes / plugins under 1.3/3.1
February 9, 2011 at 1:00 am #104975In reply to: Is BuddyPress capable of this?
Anonymous User 96400
InactiveI agree, Gravity Forms is well worth the money, even with the newish pricing scheme. The about-to-be-released 1.5 version even includes the option to replace the BP registration form and adds PayPal support and such (a developer license is needed for those). As far as I know there’s no inbuilt support for custom post types yet, but even using custom fields, coding a recipe plugin should be very easy.
February 9, 2011 at 12:10 am #104970In reply to: Is BuddyPress capable of this?
Mike
ParticipantI use Gravity Forms to do this, although you could also look into TDO mini forms (https://wordpress.org/extend/plugins/tdo-mini-forms/) if you’re not keen on spending any money. I will say this… the GA plugin is *the* best plugin I’ve ever splurged on, bar none.
February 8, 2011 at 11:53 pm #104969In reply to: New Buddypress Theme: Custom Community – 1.0
chrono1012
MemberI love the theme layout, but how do you add color to it?
February 8, 2011 at 11:47 pm #104968In reply to: Is BuddyPress capable of this?
modemlooper
ModeratorYou could possible use the group docs plugin or create your own component or even use something like gravity forms.
http://www.buddyboss.com/bp-group-documents-buddypress-plugin-review
Here’s an example of a BP recipe site http://thepioneerwoman.com/tasty-kitchen/
February 8, 2011 at 11:34 pm #104967modemlooper
ModeratorFebruary 8, 2011 at 11:27 pm #104965In reply to: BuddyPress External Group Blogs Plugin
Nick
ParticipantIs there a way to show the group avatar in the activity feed when the plugin pulls a post from an external blog. It looks a bit unprofessional to have just a blank space there instead of an image.
Thanks,
Nick -
AuthorSearch Results