Viewing 1 replies (of 1 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Hi,

    Sure, you may use such snippet to change this –

    add_filter( 'wcfmmp_shipping_processing_times', function( $processing_times ) {
    	$processing_times = array(
    															'' => __( 'Ready to ship in...', 'wc-multivendor-marketplace' ),
    															'1' => __( '15 Minutes', 'wcfm-ecoeats' ),
    															'2' => __( '30 Minutes', 'wcfm-ecoeats' ),
    															'3' => __( '45 Minutes', 'wcfm-ecoeats' ),
    															'4' => __( '60 Minutes', 'wcfm-ecoeats' ),
    															'5' => __( '1 Hour 15 Minutes', 'wcfm-ecoeats' ),
    															'6' => __( '1 Hour 30 Minutes', 'wcfm-ecoeats' ),
    															'7' => __( '1 Hour 45 Minutes', 'wcfm-ecoeats' ),
    															'8' => __( '2 Hours', 'wcfm-ecoeats' ),
    															'9' => __( '2 Hours 15 Minutes', 'wcfm-ecoeats' ),
    															'10' => __( '2 Hours 30 Minutes', 'wcfm-ecoeats' ),
    															'11' => __( '2 Hours 45 Minutes', 'wcfm-ecoeats' ),
    															'12' => __( '3 Hours', 'wcfm-ecoeats' ),
    													);
    	return $processing_times;
    }, 50 );

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin –?https://www.ads-software.com/plugins/code-snippets/

    Thank You

Viewing 1 replies (of 1 total)
  • The topic ‘Orders Processing Time’ is closed to new replies.