php 重力Wiz //重力形式//显示下拉和单选按钮产品字段的价格

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重力Wiz //重力形式//显示下拉和单选按钮产品字段的价格相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Gravity Wiz // Gravity Forms // Display Price for Drop Down and Radio Button Product Fields
 * http://gravitywiz.com/
 * Source: https://www.gravityhelp.com/documentation/article/gform_field_choice_markup_pre_render/#2-include-price-for-product-fields
 */
add_filter( 'gform_field_choice_markup_pre_render', function ( $choice_markup, $choice, $field, $value ) {

	if ( $field->type == 'product' ) {
		$new_string = sprintf( '>%s - %s<', $choice['text'], GFCommon::to_money( $choice['price'] ) );
		return str_replace( ">{$choice['text']}<", $new_string, $choice_markup );
	}

	return $choice_markup;
}, 10, 4 );

以上是关于php 重力Wiz //重力形式//显示下拉和单选按钮产品字段的价格的主要内容,如果未能解决你的问题,请参考以下文章

php 重力Wiz //重力形式//签到

php 重力Wiz //重力形式//时间敏感选择

php 重力Wiz //重力形式//货币转换器

php 重力Wiz //重力形式//条件提交按钮:全部必需

php 重力Wiz //重力形式//修改自定义字段的日期格式

php 重力Wiz //重力形式//修改条目中的日期字段格式