Search Results for 'wordpress'
-
AuthorSearch Results
-
February 11, 2011 at 5:23 pm #105157
intimez
ParticipantCorrection: not cubepoints. I looked at clean log and it’s showing up again.
@r-a-y I’ve reported it so gurus can have a peek. Thank you for confirming on your install.
surprised not many others are reporting same issue.
February 11, 2011 at 4:09 pm #105148In reply to: Not enough permissions after WordPress Upgrade
modemlooper
ModeratorIf it’s a WordPress issue you need to post in https://wordpress.org/support
This site is specific to BuddyPress issues.
February 11, 2011 at 10:22 am #105134In reply to: http://premium.wpmudev.org/ Legitamate?
pcwriter
ParticipantI think your last question is moot. Developers will very often create plugins and offer them free under GPL license. Just take a look at the WP plugin repo where you’ll find over 13,000 free plugins: https://wordpress.org/extend/plugins/
But anytime you request something be created or custom-built, it’s best to offer some form of compensation; whether you want some coding done, or a deck built in your backyard
February 11, 2011 at 7:32 am #105123In reply to: Upload content to activity stream via PHP
Paul Wong-Gibbs
KeymasterIf you can access WordPress’ PHP environment, yes, of course. It’s a function call. If you can’t, you’ll probably have to create your own XMLRPC listener or via an AJAX _POST request and do it that way.
February 10, 2011 at 7:35 pm #105101In reply to: Script for 2 posts
modemlooper
ModeratorNot really a BuddyPress issue. You need to read up on the loop.
February 10, 2011 at 6:44 pm #105096In reply to: Do I need to install MU to run BuddyPress?
modemlooper
Moderatorwhen you install BP it attaches to the first blog on MU. You can tell it to attach to other blogs. So you could create a community.url.com bog and put the social (BuddyPress) on that url. Some blogs do not want BP taking over but want to add on a social aspect to WordPress.
February 10, 2011 at 2:42 pm #105084In reply to: BP_init not working for themes Functions.php
Boone Gorges
KeymasterIt’s possible that bp_init is fired too early in the process for it to be detected with functions.php, which is only loaded with your theme (relatively late). Try hooking to something like ‘wp’ instead. You should be able to detect whether BP is activated by doing something like
`if ( !function_exists( ‘bp_loaded’ ) )
return;`In any case, you should be enqueuing scripts on the init action, which is unrelated to bp_init: https://codex.wordpress.org/Function_Reference/wp_enqueue_script
February 10, 2011 at 11:05 am #105071In reply to: Robotics News | RoboticsNedir
Xevo
ParticipantThis looks like just a WordPress site without any BuddyPress in it?
Or is this just spam?
February 10, 2011 at 9:53 am #105068In reply to: Invite Friends by Giovanni (not working properly)
Prince Abiola Ogundipe
Participant@ risi hi, this plugin has not been updated since 2009, and we dont know whats going on with Giovanni who owns the plugin as all effort to contact hin proved abortive. i have used the plugin before but i got error relating to Zend so i removed it which is what i will Advice u to do for now. i think some guru will look into it may be they can write something similar. but you can also use Invite anyone plugin, which is what am currently using but u have to input email manually. here is the link
https://wordpress.org/extend/plugins/invite-anyone/
regards
February 10, 2011 at 8:02 am #105067In reply to: How to use BuddyPress in “wordpress.com” blog ?
Hugo Ashmore
ParticipantStart a new thread please and supply details about your setup.
February 9, 2011 at 8:23 pm #105042In reply to: How to use BuddyPress in “wordpress.com” blog ?
Grow Stories
MemberThanks for the info. I have made it that far and have installed the forum but it is giving me a plain white page. How do I activate the forums?
February 9, 2011 at 8:10 pm #105041In reply to: How to use BuddyPress in “wordpress.com” blog ?
Hugo Ashmore
Participant@grow-stories this is an 8 month old thread you have dragged back up. please, in future, if you have an issue you require help with you must start a new post/thread and describe the problem in detail along with any applicable info such as version numbers , custom themes, plugins in use.
You activate the plugin in the usual place for plugins, you visit the BP menu section and configure any options you want such as forum install, extended profiles etc, then visit the theme section and activate the bp-default theme or suitable BP compatible theme you might have.
February 9, 2011 at 7:51 pm #105040In reply to: How to use BuddyPress in “wordpress.com” blog ?
Grow Stories
MemberSo I have a WordPress self hosted site and installed the BuddyPress plugin but I do not see where I can access the plugin to utilize it. Any help?
February 9, 2011 at 5:31 pm #105026In reply to: hiding dashboard
David Carson
ParticipantLook for the `bp_adminbar_thisblog_menu` function in `bp-core/bp-core-adminbar.php`. It’s around line 151 (BP Version 1.2.7).
There is an `if` statement with `current_user_can( ‘edit_posts’ )`. Replace `edit_posts` with whatever role you want to check it for. https://codex.wordpress.org/Roles_and_Capabilities
And you might already know this, but you should try to make your changes to the function using `bp-custom.php`. https://codex.buddypress.org/extending-buddypress/bp-custom-php/
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: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 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 11:12 am #104997In reply to: Forum integration
Xevo
ParticipantCheck out the bbpress wordpress plugin. ^^
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 5:14 am #104889In reply to: register page problem
argusz
MemberSorry for reply so late!!
I can still see the problem at testbp.org! I use IE 6! Please consider if it is IE’s problem!? In my won test site,I use wordpress 3.0.4 and buddypress 1.2.7 and default buddypress theme 1.2.7 and don’t make any changes!
In addition, as soon as I begin to input any letter in the activity post form or the rely post form, the right side of the square broken!
I don’t know if it’s all because of IE’s problem.
February 8, 2011 at 12:05 am #104873In reply to: Blogger to Buddypress
modemlooper
ModeratorIf you are talking they post on blogger and same post shows on a WordPress then yes. There are numerous import plugins.
February 7, 2011 at 8:55 pm #104863In reply to: word limits for posts
@mercime
Participant1. It should work as the posts are WP functions
2. You would be adding the codes as seen here https://wordpress.org/extend/plugins/content-and-excerpt-word-limit/installation/ into your active theme. Find instances of the_excerpt and the_content in your active theme’s files and replace that with code given above after you’ve activated the plugin.
https://codex.wordpress.org/Function_Reference/the_content
https://codex.wordpress.org/Function_Reference/the_excerpt3. No, this would not work in BP activity wall.
February 7, 2011 at 6:59 pm #104842In reply to: Security Feature Suggestions?
Hugo Ashmore
ParticipantProfanity filter? There was something but I think it was WP post specific but should be possible to achieve with a little work for BP aspects.
There is this:
https://wordpress.org/extend/plugins/webpurifytextreplace/
But it is a paid for solution and although it states BP support it is a little outdated so would need checking with authors as to whether it would work with alter BP versions.February 7, 2011 at 6:23 pm #104833In reply to: word limits for posts
February 7, 2011 at 4:43 pm #104821In reply to: How to have super admin approve new blog sites
TimCarey
ParticipantThis plug in doesn’t seem to be working. It looks like it was designed for the mu plug in. WordPress now includes MU in their latest version. Maybe that’s why it doesn’t work. It doesn’t work with buddy press anyway. When people go to be verified from an e-mailed link it goes to a login instead. And then that user isn’t a user at all. Any other ideas
-
AuthorSearch Results