• Hi there!

    I recently started setting up the emails on WooCommerce settings but noticed the “New account” emails are not being sent because the users are “registering” on the “Post a Job” section of my website instead of on the “checkout” or “my account” pages (currently using he Jobify Theme with WP Manager Core Add Ons and Field Editor).

    The only email new users are receiving are the generic wordpress emails with the automated password, which creates a conflict because they are being able to subscribe before paying for their listing (so this gives them access to the rest of the website without paying).

    Is there any way to enable the Woo Commerce “New Account” email sent when users register on the Post a Job Page and to completely disable the “Your Username and Password” email generated by wordpress? (I have found posts to change it, but I would prefer to completely disable it).

    This is the email template provided by WooCommerce … the only changes I made were part of the translation.

    <?php
    /**
    * Customer new account email
    *
    * @author WooThemes
    * @package WooCommerce/Templates/Emails
    * @version 1.6.4
    */

    if ( ! defined( ‘ABSPATH’ ) ) {
    exit; // Exit if accessed directly
    }

    ?>

    <?php do_action( ‘woocommerce_email_header’, $email_heading ); ?>

    <p><?php printf( __( “Gracias por crear una cuenta en %s. Tu nombre de usuario es %s.”, ‘woocommerce’ ), esc_html( $blogname ), esc_html( $user_login ) ); ?></p>

    <?php if ( get_option( ‘woocommerce_registration_generate_password’ ) == ‘yes’ && $password_generated ) : ?>

    <p><?php printf( __( “Your password has been automatically generated: %s“, ‘woocommerce’ ), esc_html( $user_pass ) ); ?></p>

    <?php endif; ?>

    <p><?php printf( __( ‘You can access your account area to view your orders and change your password here: %s.’, ‘woocommerce’ ), wc_get_page_permalink( ‘myaccount’ ) ); ?></p>

    <?php do_action( ‘woocommerce_email_footer’ ); ?>

    Thanks!

    Ally

    https://wordpress.org/plugins/woocommerce/

  • The topic ‘New Account emails not working’ is closed to new replies.