PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-lite
/
templates
/
emails
<?php /** * New Withdraw request Email. * * An email sent to the admin when a new withdraw request is created by vendor. * * @class Dokan_Vendor_Withdraw_Request * @version 2.6.8 * */ if ( ! defined( 'ABSPATH' ) ) { exit; } do_action( 'woocommerce_email_header', $email_heading, $email ); ?> <p> <?php esc_html_e( 'Hi,', 'dokan-lite' ); ?> </p> <p> <?php esc_html_e( 'A new withdraw request has been made by', 'dokan-lite' ); ?> <?php echo esc_attr( $data ['username'] ); ?>. </p> <hr> <ul> <li> <strong> <?php esc_html_e( 'Username : ', 'dokan-lite' ); ?> </strong> <?php printf( '<a href="%s">%s</a>', esc_attr( $data['profile_url'] ), esc_attr( $data['username'] ) ); ?> </li> <li> <strong> <?php esc_html_e( 'Request Amount:', 'dokan-lite' ); ?> </strong> <?php echo wp_kses_post( $data['amount'] ); ?> </li> <li> <strong> <?php esc_html_e( 'Payment Method: ', 'dokan-lite' ); ?> </strong> <?php echo esc_attr( $data['method'] ); ?> </li> </ul> <?php echo wp_kses_post( sprintf( __( 'You can approve or deny it by going <a href="%s"> here </a>', 'dokan-lite' ), esc_attr( $data['withdraw_page'] ) ) ); do_action( 'woocommerce_email_footer', $email );
[+]
..
[-] withdraw-approve.php
[edit]
[-] withdraw-new.php
[edit]
[+]
plain
[-] new-seller-registered.php
[edit]
[-] contact-seller.php
[edit]
[-] new-product.php
[edit]
[-] withdraw-cancel.php
[edit]
[-] vendor-new-order.php
[edit]
[-] product-published.php
[edit]
[-] new-product-pending.php
[edit]