Search Results for 'buddypress'
-
AuthorSearch Results
-
January 15, 2014 at 10:15 pm #176986
In reply to: [Resolved] Members not activating
Marcella
ParticipantThis is still happening. Any ideas?
Clean install, BuddyPress 1.9.1 and WordPress 3.8
January 15, 2014 at 9:47 pm #176984In reply to: Need Help – Im Building a Custom Component for Music
stoi2m1
ParticipantI have my custom component working with a custom post type. I found the tutorials written for the development of bp-checkins quite helpful. Info for others needing info on how I accomplished this can be found in these files ExtendBuddyPress-part1.pdf and ExtendBuddyPress-part2-en.pdf.
I looked into the achievements plugin but couldn’t find if or how they were using taxonomies in the url of a custom component.
Ive been thinking it might be easier to use subnavs and actions to accomplish what I want.
Using a URL like this:
http://www.domain.com/music/type/mix
or
http://www.domain.com/music/genre/rock-n-rollWhere music is my component, type/genre is my subnav slug and mix/rock-n-roll is my action.
This would give me a way to create an archive page for mixes/rock-n-roll. I would use a negative value for the position so the subnav is not visible on subnav menu.
Are there any side effects or things I should be concerned with when using this method, like how would I implement pagination of the results or how to keep someone from creating a music item that is the same name as the subnav slugs i am using.
Thanks,
JesseJanuary 15, 2014 at 9:27 pm #176980wiste
ParticipantI made it so that the “home” tab was named the “activity” tab, moved it over, and made the “forum” tab the first tab that users see when viewing a group. That way at least the first thing they see isn’t the activity feed for the group which is very overwhelming.
You can do this for each group individually using the BuddPress Group Extras plugin, but you’d have to do it one group at a time. Instead, I added some code to my functions.php in my child theme to do the same thing, but for all groups.
Below are the two functions I created. The first renames the activity tab and moves it over, the second forces the “forum” tab to be the first tab a user sees when visiting the group (unless the group has no forum in which case it still defaults to the activity tab).
//function to reorder and rename group tabs in buddypress function whff_setup_nav() { global $bp; if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) { $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 110; $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['name'] = 'Activity'; } } add_action( 'bp_setup_nav', 'whff_setup_nav', 100000 ); //function to redirect group home pages to the forum tab instead of the activity tab function redirect_group_home() { global $bp; $path = clean_url( $_SERVER['REQUEST_URI'] ); $path = apply_filters( 'bp_uri', $path ); if (bp_is_group_home() && strpos( $path, $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['slug'] ) === false && bp_is_active('forums') ) { if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == 'public') { bp_core_redirect( $path . 'forum/' ); } } } add_action('bp_init', 'redirect_group_home');January 15, 2014 at 9:09 pm #176975Tearstone
Participant@jlarosa 1.9.1 was released to include this fix for #5299: https://codex.buddypress.org/developer/releases/version-1-9-1/
January 15, 2014 at 7:38 pm #176971jlarosa
ParticipantIs there any update on this? I’m a WordPress expert, but just starting to dabble into Buddypress. I’m experiencing the same problem and tried applying the patches, but it didn’t seem to fix the problem. I’m using the Huddle Theme (Purchased), also having same issue with Frisco Child Theme.
Any timeline on 1.9.1 roll out?
January 15, 2014 at 4:46 pm #176965Ben Hansen
Participantif you are talking about editing the regular wordpress profile fields from the front end the same way you edit the extended buddypress profiles that may be part and parcel with a feature i am currently lobbying for for 2.0 which is the merger of the two, both fronted and back.
if that’s something you’d also like to see or is what you are trying to accomplish then i would urge you to enter this code patch as a ticket in trac:
https://buddypress.trac.wordpress.org
and while you’re at it please take the survey for any other input you have as far what you’d like to see for buddypress 2.0 i believe today’s meeting is where the new features will be scoped so the next few hours could be the last chance to give your input:
also if you want to attend the devchat itself it’s held on irc at 20:00 UTC every wednesday on the channel #buddypress-dev
if you do not have an irc client you can use the web browser version here:
hope to see you there!
CORRECTION: the feature scoping has been postponed until next week.
January 15, 2014 at 4:23 pm #176962Tecca
ParticipantI think we’re a bit confused because this is a native feature of one of BuddyPress’ default components. In Admin CP -> Settings -> BuddyPress Components you find one called Account Settings.
Allow your users to modify their account and notification settings directly from within their profiles.
The link should be, though there should be a tab in the profile itself:
http://example.com/members/USERNAME/profile/edit/
Replace example and USERNAME.
January 15, 2014 at 12:32 pm #176957Tim2376
ParticipantYes, I know you can edit all the field from the back end. However, I am trying to get it to allow you to show and edit the fields from the front end. Here were the steps I am thinking about using:
1) Use BuddyPress Custom Profile Menu plugin to create new tabs on the profile page like, “about”
2) make a function in function.php of my theme that would display the content for a user and allow them to edit it if it was their profile.
3) create a shortcode function that linked to the function in step 2.
4) Add the shortcode in the new page created with BuddyPress Custom Profile Menu plugin in step 1.I know how to do step 1, 3, and 4. I have an idea of how to do step 2, but I am a little fuzzy on it. Here is what I was thinking(I don’t really know php):
function ProfileAboutPageContent(){ if(bp_loggedin_user_id() == $GLOBALS['bp']->displayed_user->userdata->user_login) { echo "<p>'"bp_profile_field_data( 'field=User Bio' )"'</p>"; //Allow user to edit the content(not sure how) } elseif { echo "<p>'"bp_profile_field_data( 'field=User Bio' )"'</p>"; { } add_shortcode('AboutContent', 'ProfileAboutPageContent');Are there any errors in this code? I am not sure how to allow users to edit the content if they are the right user. Any ideas on how I could change this code? I am planning on putting this code in the function.php of my current theme.
The idea is that after I get this function and short code right I can add the shortcode to the new page I can create with the BuddyPress Custom Profile Menu plugin.
If anyone would be willing to help me figure this out I would greatly appreciate it. Thanks!
January 15, 2014 at 4:22 am #176950Ben Hansen
Participantthe front end buddypress profile is not connected to the backend one (for the most part) you may be missing the fact that the front end profile fields need to be set by you in the profile fields section of your users settings in wp admin. those fields are only editable from the front end by default.
January 15, 2014 at 4:21 am #176949In reply to: The Best Cache'ing solution for BP?
Asynaptic
Participantbecause of its nature (membership site where content differs depending on being logged in vs. logged out content) the best caching solution for buddypress is partial page caching (aka fragment cache), something that sort of exists and sorta doesn’t.
my suggestion is to take the BP survey and to add your voice for it so the developers know there is real demand:
more info:
http://chrislema.com/high-performance-wordpress-membership-site/Fragment caching in WordPress to optimize site speed for logged-in users
https://bitbucket.org/Rarst/fragment-cache
https://wordpress.org/plugins/fragmentcache/January 15, 2014 at 4:09 am #176947In reply to: Buddypress Analytics Plugin
Ben Hansen
Participantthat plugin works fine with buddypress but analytics itself doesn’t really treat bp pages any different from any other. You can set up filters, views and other GA settings to get a better picture. You might also want to check this plugin out its not free ($16 dollars i believe) but it is specifically designed to give you buddypress specific behavior analytics:
January 15, 2014 at 1:11 am #176941In reply to: Layout problems with Genesis Themes
Calvin Powers
ParticipantThank you thank you thank you! However, it only removes the stuff at the bottom of the page. What do I need to add to the buddypress.php file to remove the “By” underneath the page title?
January 15, 2014 at 12:11 am #176940In reply to: Buddypress Plugins Page
@mercime
Participant@scottwermter thank you. Will report this.
Edit – Done. https://buddypress.trac.wordpress.org/ticket/5337
January 14, 2014 at 10:12 pm #176933In reply to: Add Friends Slow Loading
evanvolgas
ParticipantHey I’m actually having a lot of trouble with this too on a few websites…. WordPress 3.8, BuddyPress 1.9, few plugins, VPS with over a ram of memory each (not enough imo but whatever) and cachhing… the site is plenty fast enough on Pingdom tests and WebPagetest.org… but the add friend functionality is painfully slow….
Cicade, did you ever find any culprits here? Has anyone else noticed with this with BP 1.9? I had not before, with 1.8. Just curious if this was solved, or if anyone else is seeing a problem/has a solution.
January 14, 2014 at 10:08 pm #176932In reply to: The Best Cache'ing solution for BP?
evanvolgas
ParticipantI’ve had a lot of luck with the W3TC plugin. I set object caching to Disk, Page caching to APC, and minification with CloudFlare (I’d use APC otherwise). If you have a lot of memory to work with, by all means use APC on the disk too…. the VPS’s I’ve worked on lately had only a gig and object cache with that had a tendency to crash under moderate traffic.
“Is it safe to say that the caching plugins do not provide a good solution for Buddypress? And that a server side caching solution is the best option?”
This question doesn’t quite make a lot of sense. APC, memcache… hell even disk is server side. And the plugins available are doing that. The question is what’s right for your site… and that really depends on what you’re starting with on your server (which I presume is a VPS not a VPN)
Anyway, W3TC works for me…but you’re gonna get a lot of answers cause it really just depends.
Key thing to note: “My site has reached popularity that I need it now.”
If you didn’t already know, play with caching on a test server. It’s useful stuff, but you can crash the site very easily if you make a mistake. This is not a toy to play with on a live website.
January 14, 2014 at 9:57 pm #176930In reply to: Layout problems with Genesis Themes
evanvolgas
ParticipantHi. Create buddypress.php in your theme and add the following:
<?php /** * Genesis Framework. * * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. * Please do all modifications in the form of a child theme. * * @package Genesis\Templates * @author StudioPress * @license GPL-2.0+ * @link http://my.studiopress.com/themes/genesis/ */ //* This file handles BuddyPress pages //* Remove the entry footer markup (requires HTML5 theme support) remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 ); remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 ); //* Remove the entry meta in the entry footer (requires HTML5 theme support) remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); genesis();If you notice the breadcrumbs pointing to home and don’t want them to, add this
add_filter ( 'genesis_home_crumb', 'sp_breadcrumb_home_link' ); // Genesis >= 1.5 function sp_breadcrumb_home_link( $crumb ) { return preg_replace('/href="[^"]*"/', 'href="whatever link you want"', $crumb); } add_filter( 'genesis_breadcrumb_args', 'sp_breadcrumb_args' ); function sp_breadcrumb_args( $args ) { $args['home'] = 'Whatever Text You Want'; $args['sep'] = ' / '; $args['list_sep'] = ', '; // Genesis 1.5 and later $args['prefix'] = '<div class="breadcrumb">'; $args['suffix'] = '</div>'; $args['heirarchial_attachments'] = true; // Genesis 1.5 and later $args['heirarchial_categories'] = true; // Genesis 1.5 and later $args['display'] = true; $args['labels']['prefix'] = 'You are here: '; $args['labels']['author'] = 'Archives for '; $args['labels']['category'] = 'Archives for '; // Genesis 1.6 and later $args['labels']['tag'] = 'Archives for '; $args['labels']['date'] = 'Archives for '; $args['labels']['search'] = 'Search for '; $args['labels']['tax'] = 'Archives for '; $args['labels']['post_type'] = 'Archives for '; $args['labels']['404'] = 'Not found: '; // Genesis 1.5 and later return $args; }January 14, 2014 at 6:17 pm #176922In reply to: The […]/uploads/avatars/ directory?
Henry Wright
ModeratorRight, so 36824 is a valid member ID?
Inside the /36824/ folder you should have some files. These will be the avatars that particular user has uploaded. Now I’m not sure about this but in the past I don’t think BP deleted old avatars when a member changed their avatar.
Are you using BP 1.9? This should be resolved going forward:
https://buddypress.trac.wordpress.org/ticket/5044It might take a manual clean-up to remove the old avatars left over from pre BP 1.9 change-avatar user actions.
Should I put a noindex on the /uploads/avatars directory?
That wouldn’t do any harm.
January 14, 2014 at 1:10 pm #176910In reply to: [Resolved] Members not activating
Marcella
ParticipantIt’s still not working. As outlined above, I’ve logged in with all accounts that have signed up and still they do not show up.
I’ll try re-installing WordPress and BuddyPress. It’s an old install, that’s been upgraded.
January 14, 2014 at 12:49 pm #176909In reply to: Member Video Gallery
Shmoo
ParticipantI think you can use the default Xprofile fields for this.
Just add a new tab ‘video’s’ and another tab called ‘photo’s’ and let them copy-/paste links to YouTube-/Flickr and others inside a multi-line text input field. ( Xprofile )
I believe the WordPress Embed service will auto complete those links into embedded video’s and images.
If not –> Search: BuddyPress auto embed xprofile – something like that.
January 14, 2014 at 10:51 am #176905In reply to: Allow members to post listings
Anonymous User 10273379
InactiveActually, this is exactly what BePro Listings does. Its a wordpress classifieds listings plugin which works with buddypress. Members can create and manage listings from their buddypress profile and their creations show up in the activity feed.
You can setup google maps, cost, and several other features 100% for free. beprosoftware.com/products/bepro-listings
[deleted extra link- no ads please. mercime]You are right about job board or marketplace type plugin’s being out of date and complicated to hack. BePro Listings is constantly being updated and has a plethora of wordpress hooks and filters for expansions. In fact, that’s how the plugins/addons all work together, because BePro Listings is so extendable. Its built to fit into any wordpress theme
Regards
___
BePro Software TeamJanuary 14, 2014 at 10:49 am #176904In reply to: Hidden Users
joeheyes
ParticipantHi, I have a similar problem. Is there a way of making a user role that will work in the wordpress site but not show up in buddypress.
January 14, 2014 at 2:41 am #176894In reply to: BuddyPress Activity Privacy
scimea
ParticipantThank you very much @megainfo
It would be great if you are making those updates to BuddyPress Activity Privacy, with @mentionedonly setting or mentioned person could always see the post/message.
I eagerly await your next update! Do you know when you will be releasing it?
January 14, 2014 at 12:40 am #176889In reply to: Register Page Blank after Update
wcs2
ParticipantThe plugin BuddyPress Wall was causing the conflict and causing BP pages to not appear.
January 13, 2014 at 11:48 pm #176886In reply to: Membership Reporting
shanebp
Moderator@ubernaut – thanks for the kind words and your feedback during the dev
@henrywright
>like a member stats dashboardNot sure what you mean.
http://www.philopress.com/products/buddyreports/ is meant to be a flexible Administrator tool. Therefore access can be restricted.
There is this plugin for front-end graphs.
https://wordpress.org/plugins/buddypress-activity-graphs/January 13, 2014 at 9:38 pm #176874In reply to: Dealing with deleted members (Redirects)
Henry Wright
Moderator@ubernaut The problem is internal broken links – the activity stream might have items in it that aren’t removed that point to a user’s profile. Then there are manual links user’s have posted themselves – @-mentions in activity updates, in activity comments, in blog comments, in blog posts, and inside private messaging threads. The list is quite endless. To my knowledge, there’s no set way of dealing with these remains after an account has been deleted.
I opened a thread a few days ago in an attempt to perform some housekeeping after a user deletes their account. Didn’t get any responses so I put the idea on hold temporarily.
https://buddypress.org/support/topic/housekeeping-after-delete-acount/
-
AuthorSearch Results