N
N
Nikita2017-02-09 10:08:00
PHP
Nikita, 2017-02-09 10:08:00

How to display error message instead of Woocommerce header?

Below is a part of the code with the output of the title and error (if any).
From the password recovery form to your personal account.
<?php
echo apply_filters( 'woocommerce_lost_password_message', esc_html__( 'Please enter your email address. You will receive a link to create a new password via email', 'mrbara' ) );
?>// header itself
<?php wc_print_notices(); ?> //output template with an error
And here is the error output template itself.
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! $messages ){
return;
}
?>
<?php
echo wp_kses_post('Oops: We couldn't\' t find that email address');
?>
The question itself is how do I display the title with an error instead of the title on the page with the form, and not both titles.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question