Export all field data in uppercase characters

function custom_woo_ce_wp_specialchars_decode( $string = ” ) { // Force all characters, including accented characters to be uppercase $string = mb_strtoupper( $string, ‘UTF-8’ ); return $string; } add_filter( ‘woo_ce_wp_specialchars_decode’, ‘custom_woo_ce_wp_specialchars_decode’ );Continue reading

Add a custom Product import field to Product Importer Deluxe

function custom_woo_pd_extend_options_addons( $fields ) { // Import field title: Average Rating (shown as a custom Product import field) // Import field key: average_rating (use this key throughout the below Filters) $fields[] = array( ‘name’ => ‘average_rating’, ‘label’ => __( ‘Average…Continue reading

Add a single Order export field with all Shipping address details

function custom_woo_ce_extend_order_fields( $fields ) { $fields[] = array( ‘name’ => ‘shipping_address_full’, ‘label’ => ‘Shipping: All details’, ‘hover’ => ‘Custom Order field within functions.php’ ); return $fields; } add_filter( ‘woo_ce_order_fields’, ‘custom_woo_ce_extend_order_fields’ ); function custom_woo_ce_extend_order( $order, $order_id ) { $order->shipping_address_full = ”;…Continue reading

Add a single Order export field with all Shipping address details

function custom_woo_ce_extend_order_fields( $fields ) { $fields[] = array( ‘name’ => ‘shipping_address_full’, ‘label’ => ‘Shipping: All details’, ‘hover’ => ‘Custom Order field within functions.php’ ); return $fields; } add_filter( ‘woo_ce_order_fields’, ‘custom_woo_ce_extend_order_fields’ ); function custom_woo_ce_extend_order( $order, $order_id ) { $order->shipping_address_full = ”;…Continue reading

Add a single Order export field with all Billing address details

function custom_woo_ce_extend_order_fields( $fields ) { $fields[] = array( ‘name’ => ‘billing_address_full’, ‘label’ => ‘Billing: All details’, ‘hover’ => ‘Custom Order field within functions.php’ ); return $fields; } add_filter( ‘woo_ce_order_fields’, ‘custom_woo_ce_extend_order_fields’ ); function custom_woo_ce_extend_order( $order, $order_id ) { $order->billing_address_full = ”;…Continue reading

Return the highest Variation Price as Variable Price in Product exports

function custom_woo_ce_product_variation_pricing( $product, $pricing_args ) { if( $pricing_args[‘min_price’] $pricing_args[‘max_price’] ) { $product->price = woo_ce_format_price( $pricing_args[‘max_price’] ); $product->sale_price = woo_ce_format_price( $pricing_args[‘max_sale_price’] ); } return $product; } add_filter( ‘woo_ce_product_variation_pricing’, ‘custom_woo_ce_product_variation_pricing’, 10, 2 );Continue reading

Adding static Order Item fields to the Orders export type

function custom_woo_ce_order_fields( $fields ) { $fields[] = array( ‘name’ => ‘order_items_static’, ‘label’ => __( ‘Order Items: Static Field’, ‘woo_ce’ ), ‘hover’ => __( ‘Custom Field within functions.php’, ‘woo_ce’ ) ); return $fields; } add_filter( ‘woo_ce_order_fields’, ‘custom_woo_ce_order_fields’ ); function custom_woo_ce_extend_order_item( $order_item…Continue reading