Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Woocommerce shortcode needed for Forgot Password

Can someone help me out with Woocommerce issue. I see that they removed shortcode for forgot password, but I am in need of one, since I am trying to embed the form in pop-up.

If anyone who had a similar problem can help, it would be great.

In the end, it doesnt need to be a Woocommerce one, it can be anything.

like image 886
Sofija Gadjanski Bozic Avatar asked Jan 27 '26 04:01

Sofija Gadjanski Bozic


1 Answers

Below custom shortcode that allow you use [lost_password_form] shortcode

<?php 

function wc_custom_lost_password_form( $atts ) {

    return wc_get_template( 'myaccount/form-lost-password.php', array( 'form' => 'lost_password' ) );

}
add_shortcode( 'lost_password_form', 'wc_custom_lost_password_form' );

?>
like image 110
mattkrupnik Avatar answered Jan 30 '26 03:01

mattkrupnik