如何在Woocommerce中获取和显示BACS帐户详细信息

时间:2018-12-06 17:12:20

标签: php wordpress woocommerce payment-gateway orders

我有一个非常简单的想法,但是我不知道如何在WooCommerce中做到这一点。

在我的商店中,我启用了一些付款方式,也可以通过银行转帐付款。但是,当客户选择银行转帐时,他会看到进行转帐所需的数据。但是在那之后,就没有其他选项可以在所有人都在寻找的“谢谢”页面上显示该数据。

有一种简单的方法可以再次显示该数据吗?

2 个答案:

答案 0 :(得分:2)

Bacs帐户的详细信息作为所有Wordpress和Woocommerce设置的大部分存储在wp_options表中。

可以使用(可以设置多个不同的银行帐户的多维数组,可以设置多个)来访问它们

$bacs_accounts_info = get_option( 'woocommerce_bacs_accounts');

通常,默认情况下,此详细信息显示在woocommerce谢谢页面和某些客户电子邮件通知中……


要显示格式化的银行帐户信息,我构建了此自定义功能:

// Utility function, to display BACS accounts details
function get_bacs_account_details_html( $echo = true, $type = 'list' ) {

    ob_start();

    $gateway    = new WC_Gateway_BACS();
    $country    = WC()->countries->get_base_country();
    $locale     = $gateway->get_country_locale();
    $bacs_info  = get_option( 'woocommerce_bacs_accounts');

    // Get sortcode label in the $locale array and use appropriate one
    $sort_code_label = isset( $locale[ $country ]['sortcode']['label'] ) ? $locale[ $country ]['sortcode']['label'] : __( 'Sort code', 'woocommerce' );

    if( $type = 'list' ) :
    ?>
    <div class="woocommerce-bacs-bank-details">
    <h2 class="wc-bacs-bank-details-heading"><?php _e('Our bank details'); ?></h2>
    <?php
    $i = -1;
    if ( $bacs_info ) : foreach ( $bacs_info as $account ) :
    $i++;

    $account_name   = esc_attr( wp_unslash( $account['account_name'] ) );
    $bank_name      = esc_attr( wp_unslash( $account['bank_name'] ) );
    $account_number = esc_attr( $account['account_number'] );
    $sort_code      = esc_attr( $account['sort_code'] );
    $iban_code      = esc_attr( $account['iban'] );
    $bic_code       = esc_attr( $account['bic'] );
    ?>
    <h3 class="wc-bacs-bank-details-account-name"><?php echo $account_name; ?>:</h3>
    <ul class="wc-bacs-bank-details order_details bacs_details">
        <li class="bank_name"><?php _e('Bank'); ?>: <strong><?php echo $bank_name; ?></strong></li>
        <li class="account_number"><?php _e('Account number'); ?>: <strong><?php echo $account_number; ?></strong></li>
        <li class="sort_code"><?php echo $sort_code_label; ?>: <strong><?php echo $sort_code; ?></strong></li>
        <li class="iban"><?php _e('IBAN'); ?>: <strong><?php echo $iban_code; ?></strong></li>
        <li class="bic"><?php _e('BIC'); ?>: <strong><?php echo $bic_code; ?></strong></li>
    </ul>
    <?php endforeach; endif; ?>
    </div>
    <?php
    else :
    ?>
    <h2><?php _e( 'Account details', 'woocommerce' ); ?>:</h2>
    <table class="widefat wc_input_table" cellspacing="0">
        <thead>
            <tr>
                <th><?php _e( 'Account name', 'woocommerce' ); ?></th>
                <th><?php _e( 'Account number', 'woocommerce' ); ?></th>
                <th><?php _e( 'Bank name', 'woocommerce' ); ?></th>
                <th><?php echo $sort_code_label; ?></th>
                <th><?php _e( 'IBAN', 'woocommerce' ); ?></th>
                <th><?php _e( 'BIC / Swift', 'woocommerce' ); ?></th>
            </tr>
        </thead>
        <tbody class="accounts">
            <?php
            $i = -1;
            if ( $bacs_info ) {
                foreach ( $bacs_info as $account ) {
                    $i++;

                    echo '<tr class="account">
                        <td>' . esc_attr( wp_unslash( $account['account_name'] ) ) . '</td>
                        <td>' . esc_attr( $account['account_number'] ) . '</td>
                        <td>' . esc_attr( wp_unslash( $account['bank_name'] ) ) . '</td>
                        <td>' . esc_attr( $account['sort_code'] ) . '</td>
                        <td>' . esc_attr( $account['iban'] ) . '</td>
                        <td>' . esc_attr( $account['bic'] ) . '</td>
                    </tr>';
                }
            }
            ?>
        </tbody>
    </table>
    <?php
    endif;
    $output = ob_get_clean();

    if ( $echo )
        echo $output;
    else
        return $output;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。。经过测试和工作。


可能的用法:

1)在任何模板或php代码中,您将只用于显示此帐户详细信息:

get_bacs_account_details_html();

2)作为挂钩函数(您将在其中设置所需的动作挂钩)。

以下是一个示例用法,该示例将在“我的帐户订单”视图中显示该银行帐户详细信息,以BACS作为付款网关并处于“保留”状态的订单:

add_action( 'woocommerce_view_order', 'display_bacs_account_details_on_view_order', 5, 1 );
function display_bacs_account_details_on_view_order( $order_id ){
    // Get an instance of the WC_Order object
    $order = wc_get_order( $order_id );

    if( $order->get_payment_method() === 'bacs' && $order->get_status() === 'on-hold' ){
        get_bacs_account_details_html();
    }
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试并可以正常工作。

enter image description here

3)作为简码 [bacs_account_details]

add_shortcode( 'bacs_account_details', 'shortcode_bacs_account_details' );
function shortcode_bacs_account_details() {
    get_bacs_account_details_html( false );
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试并可以正常工作。

  • 然后,您可以在页面,帖子或自定义帖子的任何Wordpress编辑器中使用它:[bacs_account_details]
  • 或在PHP代码中:echo do_shortcode('[bacs_account_details]');

答案 1 :(得分:1)

在“谢谢”页面上执行操作,在您的子functions.php中或使用代码段插件

add_action('woocommerce_thankyou', 'customThankYouFunction');

并在您的function中写下您的逻辑

function customThankYouFunction ($order_id) {
    $order = wc_get_order( $order_id );
    $order_data = $order->get_data(); // The Order data
    $order_id = $order_data['id'];
    $order_parent_id = $order_data['parent_id'];
    $order_status = $order_data['status'];
    $order_currency = $order_data['currency'];
    $order_version = $order_data['version'];
    $order_payment_method = $order_data['payment_method'];
    $order_payment_method_title = $order_data['payment_method_title'];
    $order_payment_method = $order_data['payment_method'];
    $order_payment_method = $order_data['payment_method'];
} 

您可以立即处理订单

引用How to get WooCommerce order details