Adding multiple static Order fields to the Orders export type

function custom_woo_ce_order_fields( $fields ) { $fields[] = array( ‘name’ => ‘static_field_1’, ‘label’ => __( ‘Static Field #1’, ‘woo_ce’ ), ‘hover’ => __( ‘Static Field within functions.php’, ‘woo_ce’ ) ); $fields[] = array( ‘name’ => ‘static_field_2’, ‘label’ => __( ‘Static Field…Continue reading

Override the default te% and %time% export filename Tags

function custom_woo_ce_filename_tag_date() { // Adjust this date variable return date(“m-d-Y”); } add_filter( ‘woo_ce_filename_tag_date’, ‘custom_woo_ce_filename_tag_date’ ); function custom_woo_ce_filename_tag_time() { // Adjust this time variable return date(“H_i_s”); } add_filter( ‘woo_ce_filename_tag_time’, ‘custom_woo_ce_filename_tag_time’ );Continue reading