Payment Method Column
unknown
php
2 years ago
697 B
2
Indexable
Never
add_action('marketking_orders_page_column_header', function(){ ?> <th class="nk-tb-col tb-col-md"><span class="sub-text d-none d-mb-block"><?php esc_html_e('Payment Method','marketking-multivendor-marketplace-for-woocommerce'); ?></span></th> <?php }); add_action('marketking_orders_page_column_footer', function(){ ?> <th class="nk-tb-col tb-col-md"><?php esc_html_e('method','marketking-multivendor-marketplace-for-woocommerce'); ?></th> <?php }); add_action('marketking_orders_page_column_content', function($order){ ?> <td class="nk-tb-col"> <div> <span class="tb-lead"><?php echo esc_html($order->get_payment_method_title());?></span> </div> </td> <?php });