How to Change the Credit Link Text?

Description The cppro_credit_text filter allows to Update “Powered by Convert Pro” link when Credit Link setting is enabled on admin settings panel. Usage // Filter callback function function example_callback( $content ) { //Process content here return $content; } add_filter( ‘cppro_credit_text’, ‘example_callback’, 10 ); Parameters $content: (string) text to appear in credit link. Example /** * Update Credit link text […]

How to Change the Credit Link Text? Read More »