quick and dirty would be to open the file: wpuf-dashboard.php
then around line 423 or so.. just after
<h3><?php _e( 'Author Info', 'wpuf' ); ?></h3>
paste this in..
<?php
if(function_exists( get_wpseo_options )){
//echo "<h2>Wordpress SEO Installed</h2>";
$current_user = wp_get_current_user();
$user_googleplus = get_the_author_meta('googleplus', $current_user->ID );
$user_twitter = get_the_author_meta('twitter', $current_user->ID );
$user_facebook = get_the_author_meta('facebook', $current_user->ID );
echo "<h2>Social Media</h2>";
echo '<p class="wpuf-user-name">Google: '.$user_googleplus.'</p>';
echo '<p class="wpuf-user-name">Facebook: '.$user_facebook.'</p>';
echo '<p class="wpuf-user-name">Twitter: '.$user_twitter.'</p>';
}
?>
all it does is check to see if WPSEO options function exists
then pulls out the get_the_author_meta info, and displays it on the page, like i said quick and dirty,
will be deleted if there’s any updates to the plugin!
Would be better with conditional checks around each to see if they have any values before echo’ing to the screen, then add icons etc..
Marty