简体   繁体   English

如何在Woocommerce数量字段中删除class =“ quantity”

[英]How to remove class=“quantity” in Woocommerce qty field

How to remove <div class="quantity"> in woocommerce_quantity_input (Woocommerce) 如何在woocommerce_quantity_input(Woocommerce)中删除<div class="quantity">

$quantity=woocommerce_quantity_input();

$quantity_field= str_replace('<div class="quantity">', '', $quantity);

You can use preg_replace for this! 您可以为此使用preg_replace

preg_match('/^(<div class="quantity">)(.*?)(<\/div>)$/', woocommerce_quantity_input(), $matches);

// this will output whatever is in the middle of <div class="quantity"></div>
$quantity_field = $matches[2];

Fiddle : PHPFiddle 小提琴PHPFiddle

如果要覆盖woocommerce插件文件,请从global / quantity-input.php中删除类数量

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM