PATH:
home
/
letacommog
/
aacote
/
wp-content
/
plugins
/
dc-woocommerce-multi-vendor
/
templates
/
emails
/
plain
<?php /** * The template for displaying demo plugin content. * * Override this template by copying it to yourtheme/dc-product-vendor/emails/vendor-direct-bank.php * * @author WC Marketplace * @package dc-product-vendor/Templates * @version 0.0.1 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly global $WCMp; echo $email_heading . "\n\n"; $amount = get_post_meta($transaction_id, 'amount', true) - get_post_meta($transaction_id, 'transfer_charge', true) - get_post_meta($transaction_id, 'gateway_charge', true); echo apply_filters( 'wcmp_thankyou_transaction_received_text', sprintf(__( 'Hello,<br>We have received a new withdrawal request for %s from you and your request is being processed.The order details are as follows:', 'dc-woocommerce-multi-vendor'), get_woocommerce_currency().$amount), $transaction_id ); echo "****************************************************\n\n"; $commission_details = $WCMp->transaction->get_transaction_item_details($transaction_id); if(!empty($commission_details['body'])) { foreach ( $commission_details['body'] as $commission_detail ) { foreach($commission_detail as $details) { foreach($details as $detail_key => $detail) { echo $detail_key .' : '. $detail.'\n'; } } } } echo "----------\n\n"; if ( $totals = $WCMp->transaction->get_transaction_item_totals($transaction_id, $vendor) ) { foreach ( $totals as $total ) { echo $total['label'] .' : '. $total['value'].'\n'; } } echo "\n****************************************************\n\n"; echo apply_filters( 'wcmp_email_footer_text', get_option( 'wcmp_email_footer_text' ) );
[+]
..
[-] vendor-new-order.php
[edit]
[-] admin-widthdrawal-request.php
[edit]
[-] vendor-commissions-transaction.php
[edit]
[-] vendor-notify-shipped.php
[edit]
[-] rejected-vendor-account.php
[edit]
[-] admin-new-vendor-account.php
[edit]
[-] vendor-direct-bank.php
[edit]
[-] vendor-orders-stats-report.php
[edit]
[-] approved-vendor-account.php
[edit]
[-] new-admin-product.php
[edit]
[-] vendor-contact-widget-email.php
[edit]
[-] vendor-new-account.php
[edit]
[-] new-product.php
[edit]