(You can access the page by firstly visiting this link, since the shop is under coming soon visibility: https://erbacealab.it/shop/?woo-share=Y2DF3nvwQByOOoSF0pFFbB1H75Y70rXY )
Thanks,
Valentina
I have a WooCommerce site and want to send a verification email again when the user changes his e-mail on the my-account page. Is there any feature, extension or plugin that will help?
Best regards, Janis
]]>my code in my plugin functios (methods)
static public function woo_address()
{
if ( isset( $_REQUEST[‘edit-address-form’] ) ) {
WC_Form_Handler::save_address();
if ( $_REQUEST[‘edit-address-form’] === ‘billing’ ) {
WC_Shortcode_My_Account::edit_address();
} else {
WC_Shortcode_My_Account::edit_address( ‘shipping’ );
}
} else {
WC_Shortcode_My_Account::edit_address( false );
}
}
First of all, apologize to my poor English.
I created a separate user panel plugin from WooCommerce and plan to use WooCommerce pages in my plugin. I did the plugin modification correctly for my plugin and added the order and download pages well. But I have a problem adding the "My Address" and "Edit Address Form" pages. The problem is that I do not know the correct way to add address pages (WC_Shortcode_My_Account -> edit_address methods) and had trouble saving address fields (submission fields).
With thanks for your attention.
my code in my plugin functios (methods)
static public function woo_address()
{
if ( isset( $_REQUEST['edit-address-form'] ) ) {
WC_Form_Handler::save_address();
if ( $_REQUEST['edit-address-form'] === 'billing' ) {
WC_Shortcode_My_Account::edit_address();
} else {
WC_Shortcode_My_Account::edit_address( 'shipping' );
}
} else {
WC_Shortcode_My_Account::edit_address( false );
}
}
]]>Thanks
THiag
]]>Why its happening dont know. anybody help me to solve this issue
Thanks
]]>I have tried switching themes, disabling all other plugins and replacing the pages, both manually and automatically.
If anyone has had this issue as well, or is able to help me, I would be forever grateful.
Thanks in advance!
]]>