• Resolved milord85

    (@milord85)


    hi sir, i’m wondering if you provide a filter hook or some parameter into the shortcode to make changes on Login Button Text.

    Thank you,
    Milo

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Georgian Cocora

    (@raster02)

    Hello @milord85,

    This can be done with the following piece of code:

    add_filter('wppb_login_form_args', 'wppbc_login_args');
    function wppbc_login_args($args) {
    	$args['label_log_in'] = 'My New Login Label';
    
    	return $args;
    }

    You just need to add the new label on the third line.

    Let me know if it works.

    Regards.

    Thread Starter milord85

    (@milord85)

    Yes sir, thank you, it work like a charm.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change Login Button Text’ is closed to new replies.