Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author kdmurthy

    (@kdmurthy)

    By defining a shortcode for ‘sliding-panel-login-intro’, ‘sliding-panel-login-form’ and ‘sliding-panel-register-form’ – you can override the markup for each of the login panels.

    You can call Login_Radius_widget_Connect_button() in the shortcode method of these shortcodes.

    Thread Starter carroc

    (@carroc)

    Thank you for this – seems there is hope. I have not done this before. Could you provide me a semi-working example of what this might look like?

    Plugin Author kdmurthy

    (@kdmurthy)

    Define a shortcode in your functions.php. It goes some thing like this – you can find more examples in codex.

    function sc_register_form( $atts, $content ) {
       return YOURMARKUP;
    }
    add_shortcode('sliding-panel-register-form', 'sc_register_form');

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Use with Login Radius’ is closed to new replies.