automatewoo/templates/communication-preferences/communication-form-no-customer.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

26 lines
746 B
PHP

<?php
/**
* Override this template by copying it to yourtheme/automatewoo/communication-preferences/preferences-form-no-customer.php
*/
namespace AutomateWoo;
/**
* @var string|bool $intent
*/
defined( 'ABSPATH' ) || exit;
if ( $intent === 'unsubscribe' ) {
wc_add_notice( __( "We couldn't find any customer data matching your request. Your account may have been deleted.", 'automatewoo' ), 'notice' );
} else {
$text = sprintf(
/* translators: %1$s my account link start, %2$s my account link end. */
__( '%1$sSign in to your account%2$s to manage your communication preferences.', 'automatewoo' ),
'<a href="' . wc_get_page_permalink( 'myaccount' ) . '">',
'</a>'
);
wc_add_notice( $text, 'notice' );
}
wc_print_notices();