php WooCommerce测量价格计算器:重新定义数量输入的模式以包括浮点值以修复“请匹配th

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce测量价格计算器:重新定义数量输入的模式以包括浮点值以修复“请匹配th相关的知识,希望对你有一定的参考价值。

<?php // only copy this line if needed

/**
 * Filter the quantity input's pattern attribute to fix the "Please match
 * the requested format" HTML validation error that occurs when using
 * WooCommerce Measurement Price Calculator with the Enfold theme
 *
 * @props to mensmaximus {@link https://github.com/mensmaximus} for the
 * proposed solution
 *
 * @param string $pattern the value of the input element's pattern attribute
 * @return string the updated pattern to allow floats
 */
function sv_wc_mpc_quantity_input_pattern_enfold_theme( $pattern ) {

	if ( has_filter( 'woocommerce_stock_amount', 'floatval' ) ) {
		$pattern = '^\d*(\.\d*)?$';
	}

	return $pattern;
}
add_filter( 'woocommerce_quantity_input_pattern', 'sv_wc_mpc_quantity_input_pattern_enfold_theme' );

以上是关于php WooCommerce测量价格计算器:重新定义数量输入的模式以包括浮点值以修复“请匹配th的主要内容,如果未能解决你的问题,请参考以下文章

php WooCommerce:显示具有相同变化价格的可变产品的价格

php WooCommerce禁用价格范围

php WooCommerce变化价格

WooCommerce 单品页面中基于尺寸的价格计算

基于 Woocommerce 3 中的 2 个自定义字段的产品正常价格计算

php WooCommerce:将价格中的小数转换为上标。