Search Results for 'wordpress'
-
AuthorSearch Results
-
September 29, 2009 at 5:24 pm #53255
In reply to: Membership fee
takuya
ParticipantYou can do whatever you want if you can code a plugin for your needs. I hear it shouldn’t be hard for wordpress plugin developers to make one for buddypress as they’re the same.
September 29, 2009 at 3:43 pm #53240In reply to: Group/Profile Layout
Paul Wong-Gibbs
KeymasterIt’s fairly simple. If you don’t like an aspect of the default theme, edit it. The new theme architecture in BP 1.1 makes this easier than ever. I suspect over the remainder of the year we’ll see more BP themes being released.
If aren’t familar with how WordPress themes work, there are lots of documentation online and there are always people you can hire to create one for you.
All of this has been discussed on this site many times before.
September 29, 2009 at 2:36 pm #53234Jeff Sayre
ParticipantTo add further credence to the healthy, continued existence of WordPress Mu and the strength and solidity of BuddyPress, 8 months ago I went through the same investigation, searching out the strongest, best supported, most flexible open-source based platform with which to build out a very large social network. I decided that WPMU + BuddyPress was the solution for me.
Since that time, I’ve fully immersed myself in both platforms, even becoming a moderator on theses forums (as you can see). Over that 8 month period, WPMU and BP have become even stronger, have improved in numerous ways. They are both at the stage where I am now very confident in their foundation. My project is now a go and I am currently feverishly working on building my platform. I hope to be rolling out a beta of my “professional grade community” by the first of the new year.
So do not worry about the future of WPMU or BuddyPress. The future is strong, bright, and healthy.
September 29, 2009 at 6:44 am #53222Andy Peatling
KeymasterDon’t believe the hyperbole around “WordPress MU being discontinued”. It is simply merging with WordPress and all the features will be provided under that version. The misinformation on the internet about this is ridiculous.
BuddyPress does not yet have image galleries, this will come in the next version. Mark Jaquith developed GigaOm, so perhaps you can ping him to find out more.
September 29, 2009 at 3:17 am #53214In reply to: Extended Profiles on Sign up?
lostdeviant
ParticipantI also just noticed that buddypress profiles don’t import from wordpress profiles or vice versa. It takes enough tooth pulling to get people to complete one profile. Adding those fields to sign up would be good because required fields would also have some anti-spam benefits.
September 29, 2009 at 1:07 am #53210In reply to: Members directory shows blank profile
Greg
ParticipantAlright, to clarify:
- I have all plugins disabled except Buddypress, including bp-custom.php
- I have deleted any MU plugins
- I have the themes that come with buddypress enabled
I indeed have Buddypress down to the way it comes out of the box. I have even deleted all the Buddypress files, and uploaded Buddypress again from a fresh download
Unfortunately, I am not sure about errors on the server’s log files, I don’t have access to that at the moment.
But the way I see it, I have it narrowed down to two possibilities:
- It is because I have wordpress (not MU) installed at the root http://gregeland.com/ and Buddypress installed at http://gregeland.com/projects/badmintonlife/
- There is some value in the database that I cannot find that is causing this
I am leaning towards #1, but I can’t think of any real reason why it would behave like that.
September 28, 2009 at 9:49 pm #53207In reply to: Members directory shows blank profile
Jeff Sayre
ParticipantOkay, a few questions to start:
- From your description, it is not clear how you’ve attempted to debug your setup. When trying to figure out an issue with BuddyPress, it is best to distill your environment down to the lowest common denominator. This means switching to the default BP theme and deactivating all plugins except BP. It is not clear if you did this completely or just partially. In other words, you need to fully test your BP install without any 3rd-party addons. If it works in that state, then you can safely assume it is an issue with a custom theme, another plugin, or both. So, did you reset BP to its lowest common denominator?
- What errors are you seeing in your server’s log files?
- Could you please provide details about this setup:
I have Buddypress installed in a subfolder with another wordpress installation in the root…
September 28, 2009 at 5:16 pm #53193takuya
ParticipantDO NOT use installers other than default wpmu plugin installer. Install buddypress from wordpress plugin installer, or set it up manually with FTP/SSH.
And make sure to activate the theme before you select themes. Which is explained in wpmu documents.
September 28, 2009 at 5:01 pm #53187In reply to: Extending WordPress Themes – Post Experiences
Detective
ParticipantMy approach is kind of weird.
First:
I needed a custom BP framework. So I started looking at the old Skeleton Theme. The first thing I noticed is that I didn’t want a fixed layout BP theme, so I removed all sidebars in each template file and wrapped the content inside a function.
This means that every template file of my BP theme was something like this:
<?php
/* my license ... GPL2 of course
*/
function this_file_content() {
?>
just the content of the page, without sidebars
<?php
}
my_layout_generator( 'this_file_content' );The magic is in my_layout_generator, which defines the html layout of each page. This includes sidebars and other stuff. The sidebars are fully widgetized, and I have custom widgets like “BP Options Bar” and “BP User Bar”, etc. Their content is also managed through actions.
my_layout_generator can mimic any WordPress theme, you just have to write the “skeleton layout” of your target theme.
Second:
This BP framework must be integrated with the WP theme. I setup the framework as child-theme and the original WP theme as parent theme.
Considering this, my_layout_generator has the following body (simplified from the original):
function my_layout_generator( $content_func = '' ) {
get_header();
?>
<div id="container">
<?php
if ( !empty( $content_func ) && is_callable( $content_func ) )
call_user_func( $content_func );
?>
</div>
<div id="sidebars">
<?php // your sidebars code ?>
</div>
<?php
get_footer();
}This uses the original theme headers and footers. I just need to provide the correct markup in the content!
There are other things to care about, like page title. Probably the header of the original theme uses wp_title instead of the BP title. Luckily, wp_title can be filtered! This is actual code from my framework:
add_filter( 'wp_title', 'gs_wp_title' );
// we need to put the current page title on the wp_title filter, so thesis will catch it
function gs_wp_title($title, $sep = '', $seplocation = '') {
if ( bp_is_blog_page() )
return $title;
global $bp;
if ( !empty( $bp->displayed_user->fullname ) ) {
$title = strip_tags( $bp->displayed_user->fullname . ' — ' . ucwords( $bp->current_component ) . ' — ' . $bp->bp_options_nav[$bp->current_component][$bp->current_action]['name'] );
} else if ( $bp->is_single_item ) {
$title = ucwords( $bp->current_component ) . ' — ' . $bp->bp_options_title;
} else if ( $bp->is_directory ) {
if ( !$bp->current_component )
$title = sprintf( __( '%s Directory', 'buddypress' ), ucwords( BP_MEMBERS_SLUG ) );
else
$title = sprintf( __( '%s Directory', 'buddypress' ), ucwords( $bp->current_component ) );
}
return $title;
}Now we have an integrated BP theme framework
Mine is integrated with Thesis, I think other themes will be much easier to integrate because you can directly copy their layouts from their template files.
September 28, 2009 at 4:34 pm #53173In reply to: Forum URLs aren’t picked up as links
Andy Peatling
KeymasterI don’t understand the problem here.
@wordpressfan: your bug is related to the achievements plugin by the look of that error, not BuddyPress itself.
September 28, 2009 at 4:04 pm #53169In reply to: Sitewide search
Michael Berra
ParticipantI ended up using this plugin and I am really happy with it: https://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/
Tags, Categories and search (if you want to) – works great!
September 28, 2009 at 9:50 am #53155In reply to: Widget Ajax Problem on Members/Groups
Paul Wong-Gibbs
KeymasterThis thread is a) old, b) about plugins rather than BuddyPress itself and c) about to be eaten by a grue.
Any uncompatibilities need to be discussed with the authors of these plugins. There is also enough google results about jquery incompatibility with WordPress and plugins.
September 27, 2009 at 8:15 am #53130In reply to: How To Edit Title Tags?
r-a-y
KeymasterTry SEO for BuddyPress:
https://wordpress.org/extend/plugins/seo-for-buddypress/
Make sure you remove your <title> tag in your BuddyPress theme otherwise you’ll have double <title> tags.
Not sure about the plugin’s compatibility with BP 1.1-RC1.
—
Also just some friendly words of wisdom… try not to bump your post less than 24 hours after you have posted.
September 26, 2009 at 5:04 pm #53116In reply to: BuddyPress Spam
wordpressfan
ParticipantI read your example. I need something with a wider net. First off, the robot registration never leave an e-mail address. Unlike WP comment spam, WPMU registration robots appear able to bypass required fields, including e-mail address.
I receive e-mails announcing new registrations that contain only IP addresses. Meaning I would need to include hundreds of IP addresses in your code.
The real solution is somehow create a bullet-proof required registration field or move the registration page behind a firewall. I’ve seen single-user WordPress installations that move the wp-admin or wp-signup pages to avoid robot attacks using the default name and location of these pages.
September 26, 2009 at 4:24 pm #53115In reply to: Limiting Access to Registered Users?
danbpfr
ParticipantMany links here to “restrict access”
September 26, 2009 at 4:13 pm #53113In reply to: Limiting Access to Registered Users?
danbpfr
ParticipantDid tried this plugin ?
https://wordpress.org/extend/plugins/wp-members/
Seems to do what you looking for.
September 26, 2009 at 4:03 pm #53112In reply to: BuddyPress Spam
danbpfr
Participant@ wordpressfan
Did you read this post ?
I give a solution. Not perfect but it works
https://buddypress.org/forums/topic/fighting-splogs#post-22687
September 26, 2009 at 2:49 pm #53109In reply to: BuddyPress Spam
wordpressfan
ParticipantAskimet does great catching spammers comments on regular WordPress installations, but WordPress MU is commonly the target of spam registrations, which is my problem. I tried reCaptcha and the same day had to delete spammers.
I’m hoping a future version of BuddyPress or WPMU will include finer security, allowing admins to block access to only humanly-registered users, rather than either shut off all registrations. Another possibility would be to follow the example of WordPress and allow admins to relocate or rename the registration component.
September 26, 2009 at 8:54 am #53104In reply to: Fatal Error installing BP 1.0.3
Paul Wong-Gibbs
KeymasterWhat socialpreneur said.
Your error message usually means you are trying to run BuddyPress on regular WordPress, not WordPress MU. Are you sure you have installed WPMU? Where did you download it from?
September 25, 2009 at 11:31 pm #53090In reply to: SI CAPTCHA for WPMU and BuddyPress
Michael J Challis
ParticipantBeta is closed. 2.00 is released.
https://wordpress.org/extend/plugins/si-captcha-for-wordpress/
September 25, 2009 at 8:19 pm #53083In reply to: SI CAPTCHA for WPMU and BuddyPress
Michael J Challis
Participantbeta Version: 1.9.4 – Supports BuddyPress 1.0.3 and 1.1
Same download URL:
http://www.642weather.com/weather/scripts/si-captcha-for-wordpress1.9-beta.zip
Testers?
September 25, 2009 at 6:11 pm #53078In reply to: SI CAPTCHA for WPMU and BuddyPress
Michael J Challis
ParticipantI think I figured it out.
Anybody with BudyPress 1.1 want to test the registration CAPTCHA for me?
beta Version: 1.9.3
Same download URL:
http://www.642weather.com/weather/scripts/si-captcha-for-wordpress1.9-beta.zip
September 25, 2009 at 4:24 pm #53066In reply to: BBpress Plugins in V1.1
John James Jacoby
KeymasterSince there’s no admin panel in the integrated bbPress, you’d be best to try to port those bbPress plugins into a WordPress one, and add any BuddyPress specific features to it.
September 25, 2009 at 4:09 pm #53061In reply to: SI CAPTCHA for WPMU and BuddyPress
Michael J Challis
ParticipantThanks for testing.
Did you install in plugins or mu-plugins?
Did you activate the plugin?
What version does it say it is?
9 hours ago I uploaded beta Version: 1.9.2
Same download URL:
http://www.642weather.com/weather/scripts/si-captcha-for-wordpress1.9-beta.zip
It had a fix for changing settings on WPMU forced activation installs.
Make sure the plugin is newest version or it may contain wpmu related bugs.
Mike
September 25, 2009 at 6:55 am #53041In reply to: Ads with buddypress
takuya
ParticipantMost such wordpress plugins work with wpmu. The best thing is to build a test site, install each plugin that you are interested, and test it.
-
AuthorSearch Results