php Gravity Perks // GP条件定价//显示价格标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Gravity Perks // GP条件定价//显示价格标签相关的知识,希望对你有一定的参考价值。

<script>
gform.addAction( 'gpcp_after_update_pricing', function( triggerFieldId, gpcp ) {
  ( function( $ ) {
    $( '.gpcp-price' ).each( function() {
        var price = $( this ).closest( 'li' ).find( 'input' ).val().split( '|' )[1];
        $( this ).html( gformFormatMoney( price ) );
    } );
  } )( jQuery );
} );
</script>
/**
 * Gravity Perks // GP Conditional Pricing // Display Price Labels
 * http://gravitywiz.com/documentation/gravity-forms-conditional-pricing/
 */
add_filter( 'gform_field_choice_markup_pre_render', function ( $choice_markup, $choice, $field, $value ) {
	if ( $field->type == 'product' ) {
		$new_string = sprintf( '>%s - <span class="gpcp-price">%s</span><', $choice['text'], GFCommon::to_money( $choice['price'] ) );
		return str_replace( ">{$choice['text']}<", $new_string, $choice_markup );
	}

	return $choice_markup;
}, 10, 4 );

以上是关于php Gravity Perks // GP条件定价//显示价格标签的主要内容,如果未能解决你的问题,请参考以下文章

php Gravity Perks // GP限制提交//集体应用全局限制

php Gravity Perks // GP电子商务领域//动态设置税额

php Gravity Perks // GP嵌套表单//从值隐藏产品名称

php Gravity Perks // GP通知计划程序//信用卡到期

php Gravity Perks // GP唯一ID //从Gravity PDF中排除唯一ID字段

php Gravity Perks // GP填充任何东西//微小的邮件列表