Change the credit link text in Convert Pro

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.
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.