-
israelwebdev started the forum topic Generic (non-user specific) link to User admin pages in the group How-To and Troubleshooting 13 years, 2 months ago
Is there a way to link to the user admin pages, such as Edit Profile, without including the user name in the URL, to be posted on another site or an email?
-
israelwebdev posted on the forum topic Adding contact form to members profile. in the group How-To and Troubleshooting: 13 years, 6 months ago
@ultimateuser @sameast I hacked together a widget in my functions.php using the Grunion Contact Form
function custom_buddypress_member_contact($args) {
[Read more]
global $bp;
extract($args); // Make before_widget, etc available.
echo $before_widget;
echo $before_title . __('Contact Me',TEMPLATE_DOMAIN) . $after_title;
echo do_shortcode('');
echo… -
israelwebdev posted on the forum topic Removing Favorites in the group How-To and Troubleshooting: 13 years, 6 months ago
try sticking it in your plugins/bp_custom.php file, like:
function stuff_i_want_triggered_after_bp_loads(){
global $bp;
bp_core_remove_subnav_item( $bp->activity->slug, 'favorites' );
}
add_action('wp', 'stuff_i_want_triggered_after_bp_loads'); -
israelwebdev posted on the forum topic Language Wont Change. in the group How-To and Troubleshooting: 13 years, 6 months ago
Stopped being lazy and read the code. Firstly, I wasn’t paying attention to the “domain” of the strings I was translating, which seemed to be in both buddypress and the theme. BuddyPress language file had to be under wp-content/plugins/buddypress/bp-languages/, and be named buddypress-%locale%.mo (and .po) where %locale% is the configured locale,…[Read more]
-
israelwebdev posted on the forum topic Language Wont Change. in the group How-To and Troubleshooting: 13 years, 6 months ago
not working for me either, hrmph
-
israelwebdev posted on the forum topic Adding contact form to members profile. in the group How-To and Troubleshooting: 13 years, 6 months ago
metoo, news?
-
israelwebdev posted on the forum topic Integration with New Achievements Plugin in the group CubePoints Buddypress Integration: 14 years ago
I’m setting up a new community, and would like to use either Achievements or CubePoints. Is there any discussion about the pros/cons of each?
-
israelwebdev joined the group CubePoints Buddypress Integration 14 years ago
-
israelwebdev started the forum topic BP_ENABLE_ROOT_PROFILES and MultiSite blog URLs in the group How-To and Troubleshooting: 14 years ago
I’d like my users’ profiles to appear on the root directory, which is achieved with the BP_ENABLE_ROOT_PROFILES directive. Great! Now I’d like to have the blogs they create exist in a subdirectory, such as example.com/blog/ The way it’s set up right now, the blog is hijacking the profile of the user with where = Ideally, […]
-
israelwebdev joined the group How-To and Troubleshooting 14 years ago
-
israelwebdev posted a new activity comment 14 years ago
test reply
@israelwebdev
Not recently active