@sameast
Not recently active
-
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…