Search Results for 'buddypress'
-
AuthorSearch Results
-
March 22, 2010 at 2:11 pm #69664
In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participantno problem! sorry I didn’t catch the thread earlier – had an away-from-the-computer vacation.
March 22, 2010 at 1:40 pm #69659In reply to: [New Plugin] BuddyPress Group Forum Extras
Boone Gorges
KeymasterDang it, rich, you beat me to posting here! I found this error about 5 minutes ago and checked a new version into the repo.
Thanks so much for following up!
Boone
March 22, 2010 at 1:31 pm #69658In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participantboone,
super fast look
if (isset($_GET["new"]) || $bp->current_component == BP_FORUMS_SLUG || $bp->current_action = 'forum' ) {is causing the issue – specifically
$bp->current_action = 'forum'– if i remove this the conflict no longer exists. you forgot the extra ==
March 22, 2010 at 1:06 pm #69653In reply to: [New Plugin] BuddyPress Group Forum Extras
rich! @ etiviti
Participanti got a busy monday to catch up on work – but i’ll install the attachments plugin today and see what i can find out.
March 22, 2010 at 12:48 pm #69651In reply to: Administrative Group Creating Only
rich! @ etiviti
Participanthttps://wordpress.org/extend/plugins/buddypress-restrict-group-creation/ to restrict to certain cap levels
https://wordpress.org/extend/plugins/bp-group-management/ – to add users/manage/etc
March 22, 2010 at 12:00 pm #69650Bowe
ParticipantHere is my Sidebar which does exactly what you want: Show different sidebars on different BP sections of the site.. It does not work 100% (blog sidebar does not show up yet) but it should get you started. You use BP conditional tags to show/hide the different sidebars depending where the user is on the site:
<?php do_action( 'bp_before_sidebar' ) ?>
<div id="sidebar">
<div class="padder2">
<?php
locate_template( array( 'accordeon.php' ), true );
?>
<?php do_action( 'bp_inside_before_sidebar' ) ?>
<?php if ( is_user_logged_in() ) : ?>
<?php do_action( 'bp_before_sidebar_me' ) ?>
<?php endif; ?>
<?php /* Show forum tags on the forums directory */
if ( BP_FORUMS_SLUG == bp_current_component() && bp_is_directory() ) : ?>
<div id="forum-directory-tags" class="widget tags">
<h3 class="widgettitle"><?php _e( 'Forum Topic Tags', 'buddypress' ) ?></h3>
<?php if ( function_exists('bp_forums_tag_heat_map') ) : ?>
<div id="tag-text"><?php bp_forums_tag_heat_map(); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="padder3">
<?php if(bp_is_group()){
if(!dynamic_sidebar("Group Sidebar")){?>
<?php }
}
else if(bp_is_member()){
if(!dynamic_sidebar("Profile Sidebar")){ //if user profile etc
?>
<?php
}
}
else if(bp_is_blog_page() || bp_is_directory()){
if(!dynamic_sidebar("Blog Sidebar")){?>
<?php } }
else dynamic_sidebar( 'Sidebar' )?>
<?php dynamic_sidebar( 'sidebar' ) ?>
</div>
<?php do_action( 'bp_inside_after_sidebar' ) ?>
<?php /* Show forum tags on the forums directory */
if ( BP_FORUMS_SLUG == bp_current_component() && bp_is_directory() ) : ?>
<div id="forum-directory-tags" class="widget tags">
<h3 class="widgettitle"><?php _e( 'Forum Topic Tags', 'buddypress' ) ?></h3>
<?php if ( function_exists('bp_forums_tag_heat_map') ) : ?>
<div id="tag-text"><?php bp_forums_tag_heat_map(); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
</div><!-- .padder -->
</div><!-- #sidebar -->
<?php do_action( 'bp_after_sidebar' ) ?>Make sure to register the sidebars in your functions.php (of your child theme)
if (function_exists('register_sidebar')) {
register_sidebar(
array(
'name' => 'Blog Sidebar',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => 'Profile Sidesbar',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => 'Group Sidebar ',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => 'Left Footer',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => 'Middle Footer',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => 'Right Footer',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
)
);
}March 22, 2010 at 11:59 am #69649idotter
Participantany news about this? I think there are a few other threads about this subject …
March 22, 2010 at 11:57 am #69648Andrea Rennick
ParticipantDid you create a new page and apply that page template to it?
Though I woudl really go the route of using the widget logic plugin.
March 22, 2010 at 11:55 am #69646Andrea Rennick
ParticipantI know you just marked this as resolved, but isn’t the original question basically you wanted to use the My Page Order plugin to control how the tabs look in the default theme? The tabs with links to the BuddyPress areas?
Those are not page titles. Likely will never be seen as such.
If you want to restrict aces, then use a privacy plugin for BP.
The page ordering plugin shoudl still work just fine on the regualr WP pages, or when 3.0 comes out, you’ll have that functionality (if andy adds it to the theme).
March 22, 2010 at 10:26 am #69637In reply to: Plugin Release: BuddyPress Group Wikis
D Cartwright
ParticipantHi everyone.
Apologies to anyone that has been waiting for fixes/responses. I have been bogged down at home and haven’t had a chance to be online much.
I have a fix in the works for the issues you are seeing. myislamicblog kindly allowed me deep access to his/her site and helped track down what was causing the problem. I will be releasing a cleaner/fixed version of the plugin next week.
March 22, 2010 at 9:14 am #69636In reply to: Any Way To Remove Activity Stream Replies?
Andy Peatling
KeymasterYes, you need to create a child theme of bp-default and then copy the activity/entry.php template into your child theme. You can then remove the commenting code from the template.
https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
March 22, 2010 at 6:10 am #69632In reply to: Is anyone using Buddypress-Ajax-Chat?
Casey Trowbridge
Participant@DFA327, I did end up posting those errors over at your site as well.
The issue with the message appearing after hitting publish on posts has gone away.
The others still existed last I checked.
March 22, 2010 at 5:23 am #69629In reply to: How to Integrate WP & BP Search Categories
r-a-y
KeymasterMarch 22, 2010 at 4:04 am #69627In reply to: [New Plugin] BuddyPress Group Forum Extras
5887735
InactiveJust wanted to add I had the same conflict with Forum Attachments.
March 22, 2010 at 3:32 am #69625In reply to: BP Album+ || New Features Requests and Discussion
pcwriter
ParticipantThere’s really no need for individual albums. If you read through the other posts in this thread, you’ll see that every uploaded image will have tags associated with it. What that means is that the person uploading the images decides what “categories” each image falls into. As every image can have several tags, clicking on any tag (possibly in a tag cloud) will dynamically create an album containing all images with that tag.
Say, for example, I upload several images with the tag “Best of 2009”, some with “My Beach Holiday” and a few more with “Julie’s Wedding” and “Best of 2009”. If I click on the “Best of 2009” tag, I’ll get a dynamic “album” displayed containing all “Best of 2009” images and the ones from “Julie’s Wedding” that are also tagged “Best of 2009”.
As for “hot linked” video and other media, have you tried @MrMaz’s BuddyPress Links yet? Check it out, it’s worth it!
March 22, 2010 at 2:20 am #69623In reply to: Adding activity stream and members list to index?
jwack
ParticipantTo answer my own questions.
Here is for adding the activity stream… https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
And the members list is a widget, but if you want to select which members to show you can use this plugin… https://wordpress.org/extend/plugins/buddypress-featured-members-widget/installation/
March 22, 2010 at 12:30 am #69614r-a-y
KeymasterI’d rather use a widget conditional plugin like Widget Context or Widget Logic for the sidebar.
Widget Context is best for non-coders.
March 21, 2010 at 11:03 pm #69606In reply to: global buddypress tags?
3sixty
ParticipantFor sure, “search anything…” is a misnomer and needs to be changed until BP really can search anything. As far as I can tell, some of the ‘sliver searches’ are so limited that they only check superficial elements ( for example, forum search only searches forum post *titles* and not the actual content? What am I doing wrong?
March 21, 2010 at 11:02 pm #69605Gene53
Participant@DJPaul Thanks for the info.
I’m playing around with a simple child theme by creating only a style.css file and so far, the templates work but importing the stylesheets doesn’t seem to work, I added the suggested lines in my style sheet but to no avail.
/* Inherit the default theme styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
/* Inherit the default theme adminbar styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css);Thanks,
Gene
March 21, 2010 at 10:54 pm #69602In reply to: Is anyone using Buddypress-Ajax-Chat?
Peter Anselmo
ParticipantHi, giving this plugin a whirl, and it’s pretty sweet. One thing I’ve noticed: It seems that any plugin using the generic group/single/plugins template (including all that use the Group Extension API) conflicts with chat.
I’ve noticed when using these plugins (Group Wiki, Invite Anyone, Group Documents), and you navigate to one of these pages, The chat window pops up and all online users are shown above the navigation. Not totally sure what’s causing this conflict, any ideas?
Thanks.
March 21, 2010 at 10:35 pm #69599In reply to: Notification Problem
3sixty
ParticipantI wanted to cast my vote for this bug. Regardless of how we got here, it seems pretty clear that there are ‘friendship request accepted’ notifications that are not going away. Should this be filed as an open issue at trac.buddypress.org?
March 21, 2010 at 9:56 pm #69595In reply to: Is anyone using Buddypress-Ajax-Chat?
Dfa327
Participant@Michael Berra
I’ll try to make more options in the future so you can customize the install of the chat. Like shoutbox only or full chat only and menu bar stuff too.
There’s a bunch of css styles that get loaded, facebox, rounded corners, etc. If you look in the bp-chat/bp-chat-cssjs.php you can pick and choose which ones your don’t want loaded.
Please posts errors on my site as I don’t troll this site much at all. I did a bunch of bug fixes so my guess is that solves your issues above.
Thanks,
Dave
March 21, 2010 at 9:49 pm #69593pcwriter
ParticipantBP-default must reside with the rest of Buddypress. Your best bet is to create a child theme and install your plugins onto that. https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
March 21, 2010 at 8:18 pm #69586In reply to: BuddyPress-Links 0.3 FINAL is here at last
Anton
ParticipantOn wp single, when viewing a single link the filter “Show link votes” doesn’t display the link votes. Only “Sorry, there was no activity found. Please try a different filter”. It works on the activity stream except when viewing a single link.
March 21, 2010 at 8:14 pm #69583In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
Participant@agrunder
Before I release 0.4 I am going to do a lot of WP single testing. Support for that is still in its infancy.
You can change that with the filter ‘bp_get_link_userlink’
That function is just a wrapper for bp_core_get_userlink() so you could instead use the ‘bp_core_get_userlink’ filter to change the behavior of user links install wide.
-
AuthorSearch Results