-
David Carson replied to the topic Profile link? in the forum How-to & Troubleshooting 13 years, 4 months ago
echo bp_loggedin_user_domain();
-
David Carson posted on the forum topic Profile link? in the group How-To and Troubleshooting 13 years, 4 months ago
echo bp_loggedin_user_domain();
-
David Carson posted on the forum topic How can I change the look of URL's posted in the activity stream? in the group How-To and Troubleshooting 13 years, 4 months ago
I’d probably just use CSS.
http://css-tricks.com/630-css-image-replacement/
But I like to use CSS for almost everything.
-
David Carson posted on the forum topic Making an exclusive login? in the group How-To and Troubleshooting 13 years, 4 months ago
I haven’t used or tested this plugin, but it looks like it might work for you.
https://wordpress.org/extend/plugins/user-domain-whitelist/
P.S. Go Jumbos! I’m an alum.
-
David Carson posted on the forum topic hiding dashboard in the group How-To and Troubleshooting: 13 years, 9 months ago
Look for the
bp_adminbar_thisblog_menu
function inbp-core/bp-core-adminbar.php
. It’s around line 151 (BP Version 1.2.7).There is an
if
statement withcurrent_user_can( 'edit_posts' )
. Replaceedit_posts
with whatever role you want to check it for. https://codex.wordpress.org/Roles_and_CapabilitiesAnd you might already know this, but you should…[Read more]
-
David Carson posted on the forum topic solo practice university in the group Creating & Extending: 13 years, 9 months ago
@satomom – Unfortunately, I’m not accepting any new projects at the moment. But you could try posting your project in the BuddyPress jobs board.
-
David Carson posted on the forum topic solo practice university in the group Creating & Extending: 13 years, 9 months ago
@satomom – No membership software. Just some basic PayPal subscription buttons and theme/function customizations based on whether a user is logged in or not. This method requires more oversight and maintenance (ex. if someone cancels their subscription), but it keeps everything simple for upgrades. If you’re looking for a more robust solution, you…[Read more]
-
David Carson posted on the forum topic redirect – if not logged in – for some sections in the group How-To and Troubleshooting: 13 years, 9 months ago
There is an epic thread on this that is worth a read – https://buddypress.org/community/groups/creating-extending/forum/topic/securing-components-from-non-logged-in-users/ That thread has lots of examples and discussion. Here’s an example: ` function restrict_access(){ global $bp, $bp_unfiltered_uri; if (!is_user_logged_in() && ( BP_MEMBERS_SLUG ==…[Read more]
-
David Carson posted on the forum topic Relocating "Messages" to its own page in the group Creating & Extending: 13 years, 10 months ago
There are lots of CSS hooks so you can customize the look of your messages pages. It would be easiest to just use some creative theming and create the effect. You could hide most profile information/avatar using CSS. Or you could also try creating a custom page template using the private messages loop and adjust […]
-
David Carson posted on the forum topic Navbar CSS problem in the group How-To and Troubleshooting: 13 years, 10 months ago
You just need to add an extra selector to override the default.
#header #nav { left: 15px; }
-
David Carson posted on the forum topic forum does not work in the group How-To and Troubleshooting: 13 years, 10 months ago
Make sure that you have deactivated all other plugins except BuddyPress. Or better yet, remove them from your plugins directory. And then try to reinstall the BuddyPress forums again. Or, install a shiny new version of WP/BP in another subdirectory with a fresh database to see if you still experience the forum error. That will […]
-
David Carson posted on the forum topic forum does not work in the group How-To and Troubleshooting: 13 years, 10 months ago
I think there are probably a number of things that would cause that message but I doubt it’s permissions. When you installed BuddyPress, did you get the forums working *before* any customizing (plugins/themes)? I’d recommend always doing this when installing or upgrading because it will help you to discover issues before you make customizations of […]
-
David Carson posted on the forum topic forum does not work in the group How-To and Troubleshooting: 13 years, 10 months ago
Have you tried re-installing the forums?
wp-admin/admin.php?page=bb-forums-setup
-
David Carson posted on the forum topic forum does not work in the group How-To and Troubleshooting: 13 years, 10 months ago
Do you have any Groups set up with the forum option enabled? If not, create or edit a group and make sure the
Enable discussion forum
option is checked under theAdmin
tab for that group. -
David Carson posted on the forum topic Fatal error: Class ’Bp_Activity_Tags_Widget’ in the group How-To and Troubleshooting: 13 years, 10 months ago
It looks like you are trying to use this plugin – https://buddypress.org/community/groups/buddypress-activity-tags/ – because
Bp_Activity_Tags_Widget
is not in BuddyPress itself. Try deactivating the plugin or, if you’re unable to log in to the admin, removebp-activity-tags
folder from thewp-content/plugins
directory. And maybe remove the…[Read more] -
David Carson posted on the forum topic to allow posts or comments on page other than main? in the group How-To and Troubleshooting: 13 years, 10 months ago
Where you allow people to post comments around your site is entirely up to you and depends on how you implement BuddyPress.
Head over to http://testbp.org/ and join/login to see an example of a default BuddyPress install or check out some of the sites here – https://buddypress.org/showcase/
-
David Carson posted on the forum topic Admin not receiving New User Registration emails in the group How-To and Troubleshooting: 13 years, 10 months ago
The next thing I’d do is deactivate BuddyPress to see if you’re still not getting new user notifications. If you can’t do this on your live site maybe create a test install in a subdirectory. This would help isolate whether it’s a BP or WP thing. You might want to check out the WordPress forums, […]
-
David Carson posted on the forum topic Admin not receiving New User Registration emails in the group How-To and Troubleshooting: 13 years, 10 months ago
I’d double-check that the admin email is correct at yourdomain.com/wp-admin/options-general.php Then, make sure that the emails aren’t being zapped by your SPAM filter. Do you get regular BuddyPress notifications (friend requests, private messages, etc.) to the admin email? Is your email hosted on the same server as your site? You might try…[Read more]
-
David Carson posted on the forum topic How to hide content related to members who are registered but NOT activated in the group How-To and Troubleshooting: 13 years, 10 months ago
bp_is_active()
checks if a BP $component is active – not whether members are registered but not activated. Thebp_account_was_activated
function is used in the activate.php template but isn’t appropriate here I don’t think. In addition to the BuddyPress Conditional Tags – https://codex.buddypress.org/developer-docs/conditional-template-tags/ – you…[Read more] - Load More
@davidtcarson
Active 2 weeks ago