Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/woo-wallet/templates/emails/ |
Upload File : |
<?php /** * Customer wallet transaction email * * This template can be overridden by copying it to yourtheme/woo-wallet/emails/low-wallet-balance.php. * * HOWEVER, on occasion we will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @author Subrata Mal * @version 1.0.0 * @package StandaleneTech */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * WooCommerce email header * * @hooked WC_Emails::email_header() Output the email header */ do_action( 'woocommerce_email_header', $email_heading, $email ); ?> <p> <?php /* translators: 1: wallet amount */ echo sprintf( __( 'Your %s wallet balance is low.', 'woo-wallet' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> </p> <p> <b> <?php /* translators: 1: wallet amount */ echo sprintf( __( 'Current Balance: %s', 'woo-wallet' ), woo_wallet()->wallet->get_wallet_balance( $user->ID ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> </b> </p> <p> <?php echo sprintf( __( 'Please recharge you wallet now to avoid any disruption.', 'woo-wallet' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> </p> <?php /** * WooCommerce email footer * * @hooked WC_Emails::email_footer() Output the email footer */ do_action( 'woocommerce_email_footer', $email );