Change the credit link text in Convert Pro on child sites.
Snippet Type
Execute on Child Sites
Snippet
function credit_link_text_callback( $content ) {
$content = 'Share with your friends';
return $content;
}
add_filter( 'cppro_credit_text', 'credit_link_text_callback', 10 );
NOTE: You can set credit link color in Panel section of popup settings.