【发布时间】:2022-01-13 03:30:46
【问题描述】:
有没有办法根据免费送货有条件地将以下 CSS 类应用于小计?
.free-shipping-text {
content: "Hurray Free Shipping";
}
.nonfree-shipping-text {
content: "Get Free Shipping over ₹ 1000"
}
如果小计价格低于 1000 卢比,那么 nonfree-shipping-text CSS 应该调用,当大于 1000 卢比时,free-shipping-text CSS 应该调用。
global $woocommerce;
$shipping_methods = $woocommerce->shipping->load_shipping_methods();
if($shipping_methods['free_shipping']->enabled == "yes")
{
.free-shipping-text CSS should call
}
else
.nonfree-shipping-text CSS should call
【问题讨论】:
标签: php wordpress woocommerce hook-woocommerce