如何在WooCommerce购物车中更改php函数代码的位置

时间:2019-06-20 17:01:13

标签: php woocommerce

在我的WooCommerce(https://gevcen.be/panier/)的购物车页面中,我通过php添加了一个标签,以通知您只能按缺货订单订购商品,延迟1-2周。

我的代码在产品标题中添加了标签。但是,我希望代码在变体元数据之后添加标签

将此产品添加到购物车:https://gevcen.be/horlogerie/bracelets/peaux-nobles/bracelet-en-cuir-et-nubuck-dalligator-de-louisiane-a-grosses-ecailles-mat/

有人帮忙吗? 谢谢

function woocommerce_custom_cart_item_name( $_product_title, $cart_item, $cart_item_key ) {
  if ( $cart_item['data']->backorders_require_notification() && $cart_item['data']->is_on_backorder( $cart_item['quantity'] ) ) {
    $_product_title .= '' . __( ' Disponible sur commande. Temps d approvisionnement de 1 à 2 semaines avant expédition.', 'woocommerce' ) . '';
  }
  return $_product_title;
}
add_filter( 'woocommerce_cart_item_name', 'woocommerce_custom_cart_item_name', 10, 3);

现状:我的代码是在产品标题中添加标签。

要:我希望代码在变体元数据之后添加标签

0 个答案:

没有答案