PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-lite
/
templates
/
emails
/
plain
<?php /** * New Product Email ( plain text ) * * An email sent to the admin when a new Product is created by vendor. * * @class Dokan_Email_New_Product * @version 2.6.8 * */ if ( !defined( 'ABSPATH' ) ) { exit; } echo "= " . esc_html( $email_heading ) . " =\n\n"; ?> <?php esc_html_e( 'Hello there,', 'dokan-lite' ); echo " \n\n";?> <?php esc_html_e( 'A new product is submitted to your site and pending review', 'dokan-lite' ); echo " \n\n"; ?> <?php esc_html_e( 'Summary of the product:', 'dokan-lite' ); ?> <?php echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; ?> <?php esc_attr_e( 'Title: '. $data['title'], 'dokan-lite' ); echo " \n"; ?> <?php esc_attr_e( 'Price: '. wc_price( $data['price'] ), 'dokan-lite' ); echo " \n"; ?> <?php esc_attr_e( 'Vendor: '. $data['seller_name'], 'dokan-lite' ); echo " \n"; ?> <?php esc_attr_e( 'Category: '. $data['category'], 'dokan-lite' ); echo " \n"; ?> <?php esc_html_e( 'The product is currently in "pending" state.', 'dokan-lite' ); echo " \n";?> <?php echo wp_kses_post( sprintf( __( 'In case it needs to be moderated <a href="%s"> click here </a>', 'dokan-lite' ), $data['product_link'] ) ); ?> <?php echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n"; echo esc_html( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) );
[+]
..
[-] withdraw-cancel.php
[edit]
[-] new-product-pending.php
[edit]
[-] contact-seller.php
[edit]
[-] withdraw-approve.php
[edit]
[-] product-published.php
[edit]
[-] vendor-new-order.php
[edit]
[-] withdraw-new.php
[edit]
[-] new-product.php
[edit]
[-] new-seller-registered.php
[edit]