Search Results for 'wordpress'
-
AuthorSearch Results
-
January 29, 2010 at 1:52 am #61961
In reply to: IMPORTANT — Plugin Devs – Read this
Brajesh Singh
Participanthi Ray
plugins_loaded is the standard action which gets called when all the active plugins’s source code is included(loaded) by wordpress, so It tells you that all the plugins are ready, and you can call your functions now.
The advantage of using “plugins_loaded” action is that, it is the first action hook which gets called after your(/all other active plugins source code is loaded by wordpress) , so You can be sure your code is called quiet before anything else happens.
Investigate wp-settings.php for more.
JJJ has proposed a nice solution with the bp_init action(just introduced in the r2472).
Because wordpress does not guarantees which plugin gets loaded first( it has something like, the plugins consisting of bare files are loaded first, the the plugins which are inside their own directory loaded alphabetically, AFAIK,It might have changed recently), So a plugin which is dependent on buddypress, will have many issues detecting bp is loaded or not.
So, JJJ’s solution helps there as all the buddypress methods which are called on plugins loaded action have priority less than default(less means higher priority), so if we hook to bp_init, we can be sure buddypress is loaded and you are still calling at the same action, I am already trying my hand with this, and it seems to be working,still testing though.
btw, if you have your plugins, which uses the hook “plugins_loaded” and has priority greater than 10, i.e 11 or anything else, you don’t need to worry about this change.
January 29, 2010 at 12:10 am #61959In reply to: Blogs Aren't Working at All: Page Not Found
dpee
ParticipantSorry for the delay.. I’m not quite tech savvy so my cirtex hosting operators helped install it for me. Im assuming that its installed on a subdirectory because of the whole http://mysportspress.com/wordpress-mu/ thing, and I have another website running regular wordpress at mysportspress.com.
So what I am understanding from these posts is that because of how I have installed it, I cannot make a yourdomain.mysportspress.com blog rather it had to be a mysportspress.com/yourdomain blog ? Either way it doesn’t matter to me too much I’d just like to get it working, so what Exactly am i to do?
Sorry for being such a Newb
January 28, 2010 at 9:33 pm #61946In reply to: Spam, Spam and more spam
guristu
ParticipantThe short answer is Yes. The long one is they are made for filling out forms and submitting them. A drop-down is just a field that they might encounter, so expect the functionality. On the other hand we are talking here about bots that look for WP/MU installations to exploit the default sign up or comment forms. As a rule of thumb, anything that you can do to change the default behavior, do it. It’s like Andy said: if you make it the default, the spammers will figure out a way to get around it.
Also: try very hard to stay away from the following in your URLs: wp-signup.php, wp-register, register, wpmu, wp, and anything that hints at a wordpress installation.
January 28, 2010 at 7:27 pm #61938In reply to: IMPORTANT — Plugin Devs – Read this
John James Jacoby
KeymasterFor BuddyPress 1.2, I’ve been using this.
function your_custom_loader() {
// Put the code that needs BuddyPress here. This could be something like...
require_once( WP_PLUGIN_DIR . '/your-custom-plugin/your-plugin-buddypress.php' );
}
if ( defined( 'BP_VERSION' ) )
your_custom_loader();
else
add_action( 'bp_init', 'your_custom_loader' );This way it isn’t loading any files and isn’t force loading BuddyPress; instead it’s looking to see if it’s active, and if it is your plugin loads; if it’s not it adds itself to the new bp_init action at the end of the BuddyPress load cycle, and loads then.
This method also follows the philosophy that plugins should be made for WordPress but be BuddyPress aware. This way you can tuck your BuddyPress functions and features away in a special
your-plugin-buddypress.phpfile, and only load that file when BuddyPress is already loaded and active, and without errors.Also, you’re not adding any overhead by doing this, other than a binary check for BP_VERSION. Your plugin will load itself as usual in the WordPress plugins screen, and will only start looking for BuddyPress code when BuddyPress tells it too. This is actually how I made the BuddyPress Backpat plugin load itself.
January 28, 2010 at 5:12 pm #61915Andy Peatling
KeymasterIf you’re not using the default themes, or you haven’t created a theme that is a child of bp-sn-parent then you need to install the back compat plugin to get this back again:
https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/
January 28, 2010 at 4:05 pm #61906In reply to: WP MU 2.9.1 to version 2.9.1.1
Alvaro Illanes
Participant… There any wordpress plugins that allow certain themes and plugins show only specific users?
regards
Alvaro
January 28, 2010 at 2:44 pm #61902In reply to: 1.2 Member name doesn\'t show
flyingfrog
Participanti don’t know if it can save you some work, i’ve tested some more:
* adding only one of First/Last name works
* In every case, if from wordpress administration “Edit user” i change the “display name publicly as” to the nick or last name of the user that doesn’t change inside buddypress
I don’t know if this is a desired behaviour or not, so just hoping to be useful
keep on your great work!
January 28, 2010 at 1:37 pm #61896In reply to: Anyone else working on integrating Gigya?
gpo1
Participant@zvhipp, Does it work fully and any pit-falls?
@designodyssey That login section looks good,does it run wordpressMU?
January 28, 2010 at 4:56 am #61868In reply to: Anyone else working on integrating Gigya?
zvhipp
ParticipantSeems Gigya does work with BP 1.2 on WordPress. Only thing it would require is to modify avatar section so it can display yahoo avatar if linked just as facebook connect does. And display log in button with default buddypress login box.
January 28, 2010 at 1:11 am #61857In reply to: FEATURES REQUEST Classifieds (Plugin)
grosbouff
ParticipantOk, I think this time a first version will be finally ready in some days…Let’s say… about one week I think ! A bunch of hours…
For WPMU+BP 1.2.
When WordPress 3.0 will be released; it will also work for single WP+BP.
First version will not support picture galleries.
January 28, 2010 at 12:48 am #61854In reply to: How To: Building BuddyPress 1.2 Themes
David Lewis
ParticipantOkay… when I try this new way of leaving the themes in the plugin folder… my child themes now give me an error saying “The following themes are installed but incomplete. Themes must have a stylesheet and a template.” and “Template is missing”.
Do you have to reference “Template: bp-default” differently from a child theme? With a full path perhaps? How does WordPress “know” about those themes inside the BuddyPress folder? I’m at a loss I’m afraid. And I’ve followed the instructions on the “building-a-buddypress-child-theme page” to the letter.
January 28, 2010 at 12:30 am #61853In reply to: Yet another language problem
danbpfr
ParticipantHave you RU lang activated in BP (not WPMU) general settings ?
Notice: On the trac, the RU.mo trunk version is for 1.1.2
https://i18n.trac.buddypress.org/browser/ru_RU
Translator is SlaFFik
January 27, 2010 at 1:29 pm #61818In reply to: Move from WPMU to self hosted website
Brajesh Singh
Participant1. yes, It works same as on wordpress.com, she can always start a new blog(if you have not put any restrictions.
2. Yes, they can move, they same way, you move from wordpress.com to selfhosted. Export the posts and move.
January 27, 2010 at 12:23 pm #61812In reply to: How to Create Forums in bbPress Within BuddyPress
Paul Wong-Gibbs
KeymasterHi,
I have installed the latest version of buddypress version 1.2 beta and im using this on wordpress 2.9.1. I would like to know how i integrate bbpress v3.1 with wordpress/buddypress. I’ve read many articles on this but all see to take about WordPress MU which i’m not using.
Any help would be appreciated.
Thankyou.
Murphy
bbPress is only up to 1.0.2 so I have no idea what you’re talking about. It’s probably best to make a new thread.
January 27, 2010 at 11:35 am #61808In reply to: Keep default bp theme but change main colors
Brajesh Singh
Participant@do77 , David’s method will save a lot when you will upgrade.
Now for your questions
1.No, You do not need to copy any file(because you want the same layout, so child theme inherits it from parent).
2. Create style.css, and put there the content as David has pointed(do not miss the parent tag and theme name in comments, wordpress uses this to recognize the theme)
3.yes, then you can use firebug to override it as you have already given an example
4.You may not need to do that, because you are not using any other files than css.
5, yes, but please read about wordpress child theme, that will help you in long run.
January 27, 2010 at 11:27 am #61807In reply to: Blogs Aren't Working at All: Page Not Found
Brajesh Singh
ParticipantIs this a new Installation of mu, I mean, Mu is installed on your root domain http://mysportspress.com
or http://mysportspress.com/wordpress-mu/
If Mu is not on root domain, you may not use subdomain style blogs, In that case You will have to go for category style sub blogs.
If Mu is on root domain, follow what @Obuisson1976 has mentioned, or just create a wild card subdomain, (i.e. *) in your cpanel->subdomains.
That should make it work.
January 27, 2010 at 10:15 am #61803In reply to: How to Create Forums in bbPress Within BuddyPress
murphy001
ParticipantHi,
I have installed the latest version of buddypress version 1.2 beta and im using this on wordpress 2.9.1. I would like to know how i integrate bbpress v3.1 with wordpress/buddypress. I’ve read many articles on this but all see to take about WordPress MU which i’m not using.
Any help would be appreciated.
Thankyou.
Murphy
January 26, 2010 at 9:37 pm #61773In reply to: Create Group bug
Paul Whitener Jr.
ParticipantThis issue was resolved by ensuring that my WPMU wp-config and bbPress bb-config settings matched those described here:
https://bbpress.org/forums/topic/login-integration-issues-bbpress-and-wordpress-mu#post-62274
January 26, 2010 at 9:31 pm #61771In reply to: BP Groupblog Error – Call to undefined function
Windhamdavid
Participantthis is a plugin issue and you might consider asking for help from the plugin author and/or following this thread.
January 26, 2010 at 9:17 pm #61770In reply to: groups not accessible
pclerkin
Memberinstalled BuddyPress Backwards Compatibilty – groups still dont display
http://hire.archiseek.com/groups/test-group
WordPress MU 2.9.1.1
Current version of buddypress
January 26, 2010 at 8:27 pm #61752In reply to: how to access to bbpress admin from buddypress??
John James Jacoby
KeymasterUntil bbPress is a core WordPress plugin, BuddyPress hijacks your forums and takes over the controls.
January 26, 2010 at 8:25 pm #61751John James Jacoby
KeymasterAre you using WordPress MU or normal WordPress?
If you are using MU, follow what DJPaul recomments; create a new MU blog (assuming you’ve selected subdirectory installation); then change the root blog to whatever that blog_id is. That will tell BuddyPress which blog will be the root of all of its features like profiles, directories etc…
If you are using single WordPress, that’s a little different. You could make traditional WordPress page templates for each BuddyPress page that you need, and copy the BP code into your custom WP template. That would allow you to mish-mash the page locations freely.
January 26, 2010 at 7:34 pm #61735In reply to: Profile fields empty on registration
wekko
ParticipantI found the answer. It’s not Buddypress, it’s WordPress MU. See: https://mu.wordpress.org/forums/topic/15324 . Apparently, wp-activate.php doesn’t load the Buddypress login including the hooks. Weird thing it doesn’t happen to everyone..
January 26, 2010 at 6:16 pm #61718In reply to: Widget system
Sarah Gooding
MemberYou can also widgetize other areas quite easily and drop BuddyPress widgets in there as you please. You can widgetize a custom page template if you want to. It’s really quite flexible. I wrote a tutorial on how to change different areas of your template files to be able to include widgets: http://wpmu.org/how-to-widgetize-a-page-post-header-or-any-other-template-in-wordpress/ That might help you.
January 26, 2010 at 5:52 pm #61709In reply to: Can't do anything, basically…
Sal (SCRAWLfx.com)
ParticipantYeah, turned out the error was actually one of my WordPress plugins. It was Viva Carousel.
I had to turn BuddyPress off because that’s one of my most essential plugins that I need running. I’m gonna look into it on the Viva forums and see if anyone knows the problem.
-
AuthorSearch Results