Reply To: Change Text and Link when not logged in.


Home Forums Front End PM PRO Change Text and Link when not logged in. Reply To: Change Text and Link when not logged in.

#22691
Shamim Hasan
Keymaster

add following code in your theme’s (child theme’s if you are using) functions.php

add_filter( 'fep_main_shortcode_output', function( $out ){
    if ( ! is_user_logged_in() ) {
        $out = 'Your text here';
    }
    return $out;
});