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/admin-widthdrawal-request.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); if($transaction_mode == 'direct_bank') { echo apply_filters( 'wcmp_admin_direct_bank_received_text', sprintf(__( 'Hello,<br> %s has successfully completed a withdrawal of $%s on %s through Paypal. The order details are as follows:', 'dc-woocommerce-multi-vendor'), '<a href='.$vendor->permalink.'>'.$vendor->page_title.'</a>', $amount, get_the_date( 'd/m/Y', $transaction_id )), $transaction_id ); } else if($transaction_mode == 'paypal_masspay'){ echo apply_filters( 'wcmp_admin_paypal_received_text', sprintf(__( 'Hello,<br>There is a new withdrawal request for $%s from a vendor %s at your site. The order details are as following:', 'dc-woocommerce-multi-vendor'), $amount, '<a href='.$vendor->permalink.'>'.$vendor->page_title.'</a>'), $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]