Search Results for 'buddypress'
-
AuthorSearch Results
-
November 8, 2011 at 6:53 pm #123975
In reply to: bp-default nav messed up in ie7
craiglstone
MemberScratch that. Found the solution here https://buddypress.trac.wordpress.org/ticket/3595
November 8, 2011 at 3:41 pm #123965Boone Gorges
KeymasterThere is something that you can do, though it’ll mess up activity pagination (which, in the case of AJAX loading, means that the number of activity items loaded when you click “load more” will not always be the same number). It involves filtering bp_has_activities, looping through $activities_template->activities, and removing those items that are new blog posts from your blog.
Here’s an example of the technique, used to remove self-replies: https://buddypress.org/community/groups/requests-feedback/forum/topic/couple-thoughts/?topic_page=2&num=15#post-112100
November 8, 2011 at 3:34 pm #123964In reply to: Subdomain Custom Menus – Redirecting to Main BP Site
danaskallman
MemberNo I didn’t, but do I have to if I only want BuddyPress on the main site and the rest will just be regular blogs without BP?
November 8, 2011 at 2:12 pm #123961In reply to: @mentions – removeing the @ ?
Bowe
ParticipantUse Paul his BP Labs plugin to make it more intuitive for the user.. it shows a nice popup as soon as someone types the @ character: https://wordpress.org/extend/plugins/bp-labs/
And some preview images: http://bp-tricks.com/featured/add-mentions-auto-complete-to-your-buddypress-site-with-the-bp-labs-plugin/
November 8, 2011 at 12:45 pm #123960In reply to: Restrict users to their groups and that’s it.
mmuldoon
Member@modemlooper, thanks for your help. Think I’ll go with hacking the default group to hidden.
November 8, 2011 at 11:16 am #123959In reply to: Buddypress Forums & Group Forums Not Working
denvarel
MemberSame problem here. Groups installed. Forum for groups installed and activated when i create a new group. But when I try to make a new theme is answering that the forum is not configured.
November 8, 2011 at 7:58 am #123955In reply to: BuddyPress.org’s Unified Search – How can I get it?
wilsontuladhar
MemberHi,
I was trying ur solution to the unified search but everytime i do a search it only searches through the members. i did everything as instructed but it doesn’t work. Any ides??November 8, 2011 at 5:30 am #123952In reply to: How do I remove “No Comments” – BuddyPress
jonnyscholes
MemberJust remembered, bp uses archive.php for the posts view. Open up archive.php and edit line 37 and remove the entire span tag and its contents. Leave the rest if you want tags to show up…
November 8, 2011 at 5:28 am #123951In reply to: How do I remove “No Comments” – BuddyPress
jonnyscholes
MemberIn your style.css you could add the lines:
.comments{
display: none;
}Its not the prettiest way, but it should work. The double lines still exist though so you might wanna change the css for .postmetadata to…
November 8, 2011 at 5:16 am #123950jonnyscholes
MemberOk this is just weird. For the sake of trying to figure out what the hell is going wrong, i tried doing something very similar to this thread:
Heres the working [according to the thread] code @DJPaul posted:
function stwc_website_link() {
$data = bp_get_member_profile_data( ‘field=Website’ );
if ( $data )
echo “Website: {$data}“;
}
add_action( ‘bp_directory_members_item’, ‘stwc_website_link’ );and heres my slightly modified version:
function cat_links() {
$data = bp_get_member_profile_data( ‘field=Catagories’ );
if ( $data )
echo “Website: {$data}“;
}
add_action( ‘bp_directory_members_item’, ‘cat_links’ );It /should/ output a link that has the normal category output as its title [eg. Animation, Pottery, Photography] and link to a href thats the same as the title [obviously it would get you to a page not found, but this is just for a test]. BUT it just outputs the categories in exactly the same way as bp_member_profile_data( ‘field=Catagories’ ); or bp_get_member_profile_data( ‘field=Catagories’ ); – no links, no span tags, no label saying “Website:”. This is rather confusing.
November 8, 2011 at 2:04 am #123948In reply to: Do Not Understand BuddyPress
Boone Gorges
KeymasterHeh heh.
BuddyPress is a complex piece of software. For some sites, groups will be the best choice for community engagement – traditional forums, along with all the benefits of group extension plugins (BuddyPress Docs, BP Group Documents, etc). For some sites, the interactive activity stream will be better suited to fostering community – sort of like Twitter or Facebook. It’s highly recommended that you set up and configure your BuddyPress installation first by determining the needs of your site, and then by enabling and disabling components as necessary.
November 8, 2011 at 1:40 am #123946In reply to: New site for Dance!
neononcon
MemberBest buddypress site ever seen! Now I will give up. Thanks.
Get rid of the popup bubble over content. It’s not showing anything just keeps recycling. Put some sort of background color on latest-update in the profile page.
November 8, 2011 at 1:39 am #123945In reply to: Do Not Understand BuddyPress
neononcon
MemberThanks for not answering any of the questions about groups and forums. You guys just turned up the suck and turned down the good of this thread haha.
November 8, 2011 at 12:59 am #123942In reply to: Do Not Understand BuddyPress
mrjarbenne
ParticipantIt turns up the good, and turns down the suck.
November 8, 2011 at 12:44 am #123940In reply to: Do Not Understand BuddyPress
Boone Gorges
KeymasterThe goal of BuddyPress is to maximize your site’s excellence.
November 7, 2011 at 10:59 pm #123935In reply to: User Stats Sidebar
rich
Memberstatus is updates, topics/posts is forum posts (but bbpress1.0), time since active is part of the default template(and bp includes a template function), and followers plugin did not work on my instance but that includes a count template function.
if you want the exact output here – you could use the functions in the plugin (+ followers and bp core time_since) and output your own mixup of counts via the action hook bp_after_sidebar_me
Once BP 1.6 + BBP 2.1 hits – I’ll update this plugin with ordering and more counts
November 7, 2011 at 10:39 pm #123934In reply to: redirect to Profile and not ‘Activity’
arezki
ParticipantThanks @megainfo – That did not work, BUT, putting in wp-config.php did the trick. Thanks a bunch
PROBLEM SOLVED
November 7, 2011 at 8:49 pm #123929In reply to: disable the /register/ redirect
sxalexander
MemberI’m also interested in turning off the registration process.
I saw this snippet (to be put into functions.php):
if ( bp_core_is_multisite() )
remove_action( ‘wp’, ‘bp_core_wpsignup_redirect’ );
else
remove_action( ‘init’, ‘bp_core_wpsignup_redirect’ );from this thread:
But its not working yet for me.
November 7, 2011 at 8:13 pm #123927In reply to: User Stats Sidebar
neononcon
Member@etivite thanks for the reply, but all I see is “status, topics, posts, comments, userblogs” but not time since active, followers, updates, forum posts like the BuddyPress.org site. Do I have the wrong plugin?
November 7, 2011 at 8:00 pm #123925In reply to: User Stats Sidebar
James
Participanthi, could this plugin get number of total activities for specific user?
if not, could you please take a look on this topic:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-do-you-show-a-members-total-post-count/?topic_page=2&num=15thank you.
November 7, 2011 at 4:47 pm #123922In reply to: “Join Group” button missing from Groups Directory
@mercime
Participant@oddzuki it might just be an issue with your custom theme. Change to bp-default theme.
November 7, 2011 at 3:59 pm #123917neononcon
MemberBy having tags and using BuddyPress groups, couldn’t that essentially eliminate the need for a forum?
November 7, 2011 at 3:35 pm #123915In reply to: Activation Process messed up
@mercime
Participanthttps://wordpress.org/extend/plugins/unconfirmed/ – use this to view and activate unactivated accounts.
I have not encountered that activation issue before. To troubleshoot, I would:
– Deactivate all plugins including BuddyPress and change to Twenty Eleven theme. Check registration on regular WordPress install. If activation doesn’t work, resolve this first in WP forums and with webhost. If registration/activation works proceed to next step.
– Activate BuddyPress plugin only and change to bp-default theme. Check registration/activation here. If it doesn;t work, file ticket at https://buddypress.trac.wordpress.org/newticket (log in with same username and password). It activation works, proceed to activate your theme and other plugins then test again.November 7, 2011 at 3:05 pm #123914In reply to: redirect to Profile and not ‘Activity’
arezki
ParticipantThanx @modemlooper – I am not using a cache plugin. And you are right, I am interested in turning the profile as the default page of a user file not redirecting on login. Basically with the bp-custom-php file and 3 lines in it, the just messes up login in/out. After installing it, it would go blank upon log in/out.
November 7, 2011 at 2:46 pm #123912thegblog
Member@Flora1234, not sure if you’re a spammer or something, but I think you’ll want to start your own forum post.
Is there anything anybody can tell me about what’s happening here, I’m raring to get this thing going on my site :>
-
AuthorSearch Results