• Resolved tiendabs

    (@tiendabs)


    Hello,
    Today if shipping is free it appears $0. Is there a possibility that it appears FREE instead of $0?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author rajeshsingh520

    (@rajeshsingh520)

    add_filter('pisol_ppscw_shipping_method_name', function($title, $rate){
    	if(isset($rate->cost) && $rate->cost == 0){
    		$label = $rate->get_label();
    		$title = $label.': FREE';
    	}
    	return $title;
    },10,2);

    Add the above code in your theme functions.php file or best you can use Code snippet plugin to add this code this will replace the $0 with : FREE

    Thread Starter tiendabs

    (@tiendabs)

    Excelent, i love u

    Plugin Author rajeshsingh520

    (@rajeshsingh520)

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Free Shipping’ is closed to new replies.