Hi Guys,
I'm trying to get an image to show instead of text in this button array
$button = array(
'id' => 'not_friends',
'component' => 'friends',
'must_be_logged_in' => true,
'block_self' => true,
'wrapper_class' => 'friendship-button not_friends',
'wrapper_id' => 'friendship-button-' . $potential_friend_id,
'link_class' => '',
'link_href' => wp_nonce_url( $bp->loggedin_user->domain . $bp->friends->slug . '/add-friend/' . $potential_friend_id . '/', 'friends_add_friend' ), 'link_text' => __( 'Follow', 'buddypress' ),
'link_title' => __( 'Follow', 'buddypress' ),
'link_id' => 'friend-' . $potential_friend_id,
'link_rel' => 'add',
'link_class' => 'add'
'src' => 'http://www.pixelcove.co.uk/images/addcontact.png';
);
break;
Obviously this is wrong, but does anyone have any idea how to get an image to show up?
Many Thanks
Chris