php Mostraumanotificaçãoinformandoquanto precisa comprar a mais para terfretegrátis
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Mostraumanotificaçãoinformandoquanto precisa comprar a mais para terfretegrátis相关的知识,希望对你有一定的参考价值。
<?php
add_action( 'woocommerce_check_cart_items', 'lpb_free_shipping_cart_notice' );
function lpb_free_shipping_cart_notice () {
if ( ! is_cart() ) return;
// mude o valor 150 para o valor mínimo do frete grátis
$free_shipping_amount = 150;
// modelo da mensagem (não remova o "%s")
$message = 'Compre mais %s para ter frete grátis!';
$cart_amount = WC()->cart->cart_contents_total;
$diff = $free_shipping_amount - $cart_amount;
if ( $diff > 0 ) {
wc_print_notice( sprintf( __( $message, 'lpb-free-shipping-cart-notice' ), wc_price( $diff ) ), 'notice' );
}
}
以上是关于php Mostraumanotificaçãoinformandoquanto precisa comprar a mais para terfretegrátis的主要内容,如果未能解决你的问题,请参考以下文章
PHP危险函数(23个)暂时记录
PHP 完整实战 23 种设计模式
php如何获得昨天23:59:59的时间戳
安装PHP7.1+apache2.4.23
PHP基础知识学习总结
《细说PHP》第四版 样章 第23章 自定义PHP接口规范 3