Search Results for 'buddypress'
-
AuthorSearch Results
-
February 8, 2010 at 5:55 pm #62739
In reply to: Options for registration for blogs
peterverkooijen
ParticipantI used this plugin for a one-time, scary users import operation. Not sure if that’s helpful for your issue.
The WP/WPMU/BP members database is a patchwork designed to be as incompatible as possible with whatever else you might dream of using.
February 8, 2010 at 5:51 pm #62737In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
geoffm33
ParticipantOK, I was able to reload WordPress into the doc root to avoid my issue. The particular topic I suppose is resolved but this seems like it is still an issue for WP admins that installed into a subdir of their domain.
February 8, 2010 at 4:59 pm #62731In reply to: Options for registration for blogs
symm2112
ParticipantIs anyone else using gigya plugin or facebook connect and running buddypress on a separate blog than their root blog? I’d really like to know how you’re syncing your users.
February 8, 2010 at 4:40 pm #62726In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
geoffm33
ParticipantThis is current WP trunk specific?
I may just try to reload wordpress in the document root.
February 8, 2010 at 4:39 pm #62725In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
Windhamdavid
Participanti’ll test non-multisite in a sec, but i believe it worked smoothly because
bp_core_get_site_path is dependent on ‘if ( bp_core_is_multisite() ) $site_path = $current_site->path;’ in bp-core.php #1514
don’t get me wrong, someone may come along with an easier solution for u to use.
February 8, 2010 at 4:30 pm #62724In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
Windhamdavid
ParticipantOK ~ i was able to get the bp 1.2 default running perfectly using a subdirectory install with the current wp trunk I am using multi-site ~ with only one modification –
Make sure your rewrite base for .htaccess is correct in your root and these are also correct.
$base = '/~david/your_root/';
define('DOMAIN_CURRENT_SITE', '127.0.0.1' );
define('PATH_CURRENT_SITE', '/~david/your_root/' );
..and then add this to you wp-config pointing to your subdirectory wp-content
define( 'WP_CONTENT_URL', 'http://127.0.0.1/~david/test/whatever_your_subdirectory_is/wp-content');February 8, 2010 at 4:28 pm #62723In reply to: BP 1.2 / bpPicture Album Plugin
symm2112
ParticipantSelf edited for advertising. Sorry djpaul.
Personally i’ve used and worked with picture album from manoj and I thought that was a very great plugin back in 1.0. With 1.2 coming shortly, I’m finding that bp-gallery will allow my site to do much more that I need for my site. My site is a media/magazine site which will rely heavily on video/audio/photos and galleries and albums will be a core component. I’m a participant in the bp-gallery beta and so far, it supports audio/video/photos and now the issues are really just tweaking and helping with usability. I know that buddydev is an active participant in the buddypress-dev chats and I’m not sure how much development Manoj is doing these days.
February 8, 2010 at 3:43 pm #62721In reply to: [1.2] Child Theme Best Practices
David Lewis
ParticipantI believe the only file required for a child is style.css. If it’s literally just one line of CSS… I’d probably put it in that file. So for instance:
/*
Theme Name: My Child Theme
Template: bp-default
Tags: buddypress
*/
/* Parent styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
/* Custom styles */
body {background: #cf0;}February 8, 2010 at 3:34 pm #62720In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
geoffm33
ParticipantThanks! Yeah I had fixed the links in header.php but they are indeed used throughout the site (profiles, groups, forums, etc).
February 8, 2010 at 3:32 pm #62719In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
Windhamdavid
Participantuhuhm… actually there are a lot of other places that site_url() is used, so that fix won’t work entirely.
February 8, 2010 at 3:27 pm #62717In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
Windhamdavid
ParticipantYou can just switch out <?php echo site_url() ?> in you header.php and register.php theme files with you blog url.
~ of course it’ll break running the same default bp theme under multiple ‘sites’ (subdomains/directories). This may be a good enhancement ticket so that ~ if ( bp_core_is_multisite() ); $current_site or site_url can run under the blog url and not the site_url
February 8, 2010 at 3:12 pm #62715In reply to: [1.2] Child Theme Best Practices
Andy Peatling
KeymasterFebruary 8, 2010 at 2:25 pm #62712Windhamdavid
Participantfixed in trunk ~ https://trac.buddypress.org/changeset/2620please mark as closed.
February 8, 2010 at 2:02 pm #62711In reply to: How to create forums?
dainismichel
Participantbedo02, followed your advice multiple ways. Been posting quite a bit and would love some code excerpts for how to make certain things show up in the forums. For example, with the one-click, only groups show up, and I’d like to replicate what BuddyPress does here https://buddypress.org/forums (displays “Main Themes”).
I’m able to access bbPress’s admin, but I don’t know how to make the forums and posts made there show up in BuddyPress. Been posting and could really use some code examples.
Related Posts:
https://buddypress.org/forums/topic/whats-the-code-for-the-way-buddypressorg-displays-its-forums
https://buddypress.org/forums/topic/how-to-access-to-bbpress-admin-from-buddypress
https://buddypress.org/forums/topic/bp-12-and-bbpress-adminplugins
https://buddypress.org/forums/topic/how-to-create-a-main-theme-in-buddypressbbpress-forums
https://buddypress.org/forums/topic/how-to-create-forums-in-bbpress-within-buddypress
February 8, 2010 at 1:33 pm #62709In reply to: adding content to the 1.2 default theme homepage
David Lewis
Participant@MrMaz: BuddyPress does use home.php if it exists in your child theme. It just can’t seem to use BOTH index.php (for /blog/) and home.php (for /). It used to be able to use both.
@Mike: Thanks. All that does however is create a link to /blog/. What I needed was for /blog/ to use index.php.
In the meantime I’ve actually solved this quite simply. Forget all the homepage settings stuff. All I did was create a page called “Blog” and assigned a custom template to that page. In that template, instead of using the normal index.php loop… i.e.:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>which would return posts based on the slug (so it only returns the page that you’re on if you’re on a regular “Page”)… I used this (to return all posts in the DB):
<?php $postslist = get_posts('order=DESC');
foreach ($postslist as $post) :
setup_postdata($post); ?>
<!-- Posts Loop Here -->
<?php endforeach; ?>February 8, 2010 at 1:12 pm #62708In reply to: adding content to the 1.2 default theme homepage
Mike Pratt
Participant@David I just created a page called ‘blog’ (which defaults to ‘blog’ for that page’s slug
The following menu item in header.php:
<li<?php if ( bp_is_page( BP_HOME_BLOG_SLUG ) || bp_is_blog_page() &&
!is_front_page() && !is_page() )
: ?> class="selected"<?php endif; ?>>
<a>/<?php echo BP_HOME_BLOG_SLUG ?>/" title="<?php _e( 'Blog', 'buddypress' ) ?>">
<?php _e( 'Blog', 'buddypress' ) ?></a>renders a menu item domain.com/blog, just like it used to.
You need to make sure you choose that page in Settings>Reading ‘Posts page’
On further reading of your post, maybe I don’t understand. I just know, what I described produces the exact same results as prior to the change (and removal of home.php)
February 8, 2010 at 12:35 pm #62705In reply to: adding content to the 1.2 default theme homepage
MrMaz
Participant@David Lewis
Not sure if you are aware that home.php was completely removed from the default theme in trunk? You may know this already, but just wanted to make sure.
If you still have a home.php in you child theme, I am not sure that BuddyPress is even looking for it.
Just throwing some stuff out there in case it helps break anything loose.
February 8, 2010 at 12:33 pm #62704In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
geoffm33
Participant@djpaul I apologize I never included my WP version, I am on WP 2.9.1 and trying to run bp 1.2-rc. Those settings above are WPMU specific right?
February 8, 2010 at 12:29 pm #62702In reply to: BuddyPress on a Sub Directory Installed WP 2.9.1
Paul Wong-Gibbs
KeymasterWhat are these set to in your wp-config.php?
$base = ‘/’;
define(‘DOMAIN_CURRENT_SITE’, ‘example.com’ );
define(‘PATH_CURRENT_SITE’, ‘/’ );
February 8, 2010 at 12:25 pm #62700In reply to: Creating a Cincopa Gallery Plugin for Buddypress
Paul Wong-Gibbs
KeymasterPlease stay on topic – this is not the thread to discuss plugin pricing. Recommendations are fine but do not accidentally go into advertising for paid-for plugins.
February 8, 2010 at 12:21 pm #62699In reply to: Forum "installed" but doesn't work
Paul Wong-Gibbs
KeymasterFebruary 8, 2010 at 12:19 pm #62698In reply to: BP 1.2 / bpPicture Album Plugin
Paul Wong-Gibbs
KeymasterMarking this thread as not a support issue as it is to do with a third-party plugin and not the BuddyPress core. Talk to the author of the plugin for support.
February 8, 2010 at 12:09 pm #62697In reply to: BP 1.2 / bpPicture Album Plugin
Xevo
ParticipantFebruary 8, 2010 at 9:48 am #62693In reply to: Email Login & Randomized User URLs – Solution
Nick Watson
Participant@osasko: Glad I could help
@Peterversooijen: It’s really no problem, I wouldn’t have been able to do this at all with the code you provided. That’s what I like about buddypress, there’s no secrets, it’s just everyone helping everyone.
I’m sure there are some better ways to do this, but like you said, it works for me for now.
If I can find the other simpler php version I’ll post it here, or if anyone else does that’d be great.
February 8, 2010 at 9:39 am #62692In reply to: American Idol fan site using BuddyPress 1.2
chengdu-living
ParticipantWow. Really good job. I’m looking forward to the release of this theme!
-
AuthorSearch Results