-
@ChrisClayton replied to the topic Posts with Password privacy in the forum Creating & Extending 11 years, 11 months ago
For an alternative idea, you could create a shortcode that shows the contents within it to members of a group or a site role or just certain users (if the targeted members dont change often) by using conditionals […]
-
@ChrisClayton replied to the topic Buddypress URL Structure for SEO Purposes in the forum Installing BuddyPress 11 years, 11 months ago
You may find this useful – https://buddypress.org/2009/05/customizable-slugs-in-buddypress/
You can change the members slug by defining the BP_MEMBERS_SLUG constant before BuddyPress defines the default (eg. In […]
-
@ChrisClayton replied to the topic Need Local Avatar not Just Gravatar in the forum Creating & Extending 11 years, 11 months ago
As Ben said, BuddyPress has local avatar uploading AND gravatar intergration built in.
Is the theme removing core functionality?Additionally, you can use a plugin for photo gallery features (there are loads. […]
-
@ChrisClayton replied to the topic Download user profile in PDF in the forum How-to & Troubleshooting 11 years, 11 months ago
@Gazen – I don’t think there is a plugin, however here is a tutorial that may help you achieve it.
http://blog.themeforest.net/tutorials/how-to-create-pdf-files-with-php/
-
@ChrisClayton replied to the topic How can I get the activity like facebooks? in the forum Installing BuddyPress 11 years, 11 months ago
I hate the edit lock here.
Just to clarify: you’ll need to create a new bp_has_activities (copy/paste and change prefix) add that code in (you could edit another scope, eg friends but I recommend making new […] -
@ChrisClayton replied to the topic How can I get the activity like facebooks? in the forum Installing BuddyPress 11 years, 11 months ago
The above will create a new scope called friendsnme and show both friends and the logged in user in the activity feed. Untested use at your own risk.
-
@ChrisClayton replied to the topic How can I get the activity like facebooks? in the forum Installing BuddyPress 11 years, 11 months ago
Example option (Really quickly coded. untested.)
case 'friendsnme':
if ( bp_is_active( 'friends' ) )
$friends = friends_get_friend_user_ids( $user_id );
$me = array(bp_loggedin_user_id());
$friendsnme = […] -
@ChrisClayton replied to the topic Removing 'Global RSS Feed' in the forum How-to & Troubleshooting 11 years, 11 months ago
@marutim – sorry, should have mentioned that i didnt actually test it when i posted that but i just tried it on a site and it seems to work, and I can’t see anything wrong with the code you posted.
Not sure why […] -
@ChrisClayton replied to the topic SEO for Member Pages Hack? in the forum How-to & Troubleshooting 11 years, 11 months ago
One option could be to create your own title function that mimics what bp_page_title() used to do then using that tutorial to output it (the conditional hasn’t changed)
-
@ChrisClayton replied to the topic SEO for Member Pages Hack? in the forum How-to & Troubleshooting 11 years, 11 months ago
I dont use Yoast seo and dont know what he does with his code, but if it helps here’s what BP uses now (in 1.6) – https://buddypress.trac.wordpress.org/browser/branches/1.6/bp-core/bp-core-filters.
-
@ChrisClayton replied to the topic Forum/FAQ search? Tab hiding? in the forum How-to & Troubleshooting 11 years, 11 months ago
On the new codex them, there is a search form in the right sidebar.
-
@ChrisClayton replied to the topic [Resolved] Guest Redirect in the forum Installing BuddyPress 11 years, 11 months ago
-
@ChrisClayton replied to the topic child buddypress in the forum Installing BuddyPress 11 years, 11 months ago
I’m a slow Typer.:D
-
@ChrisClayton replied to the topic child buddypress in the forum Installing BuddyPress 11 years, 11 months ago
1. It could be an issue with the redirects, does this link work for you? https://codex.buddypress.org/legacy/building-a-buddypress-child-theme/
2. The site here is using Bbpress 2 with the topic type as a […]
-
@ChrisClayton replied to the topic How can I get the activity like facebooks? in the forum Installing BuddyPress 11 years, 11 months ago
Apologise if my last reply was somewhat cryptic – what I meant to say is that BP doesn’t support it out of the box (yet), but anything can be done with the right skills. It accomplishes half of it (using the […]
-
@ChrisClayton replied to the topic Removing 'Global RSS Feed' in the forum How-to & Troubleshooting 11 years, 11 months ago
You could use the die function that @aces provided but hook it to the BuddyPress actions (for site side feeds that’s ‘bp_activity_sitewide_feed’)
Eg.
add_action('bp_activity_sitewide_feed', 'fb_disable_feed', 1);
-
@ChrisClayton replied to the topic What is the best theme to get? in the forum Installing BuddyPress 11 years, 11 months ago
Oh and with your last question, you can use your current theme (especially after 1.7). Just turn off registration, so that you create accounts manually and make it so that only logged in users can see BP pages.
-
@ChrisClayton replied to the topic What is the best theme to get? in the forum Installing BuddyPress 11 years, 11 months ago
Drdick8, in the next major version of BP (1.7) theming will be easier and allow you to use ANY WordPress theme out of the box. There are millions of WP themes. (See: https://wordpress.org/extend/themes)
With the 4. […] -
@ChrisClayton replied to the topic How can I get the activity like facebooks? in the forum Installing BuddyPress 11 years, 11 months ago
And regarding activity privacy, it’s coming soon, I believe. Profile privacy is still new and privacy takes a lot of work to implement.
- Load More
@chrisclayton
Active 4 years, 7 months ago