我有Gravity Forms插件代码的问题。我已经创建了整个表单,并且我已经将货币设置为"€"。我想要完成的是在" Subtotal"上设置不同的货币符号。部分。 因此,所有价格都将在""但最后一部分计算一切我只想插入一些其他符号,例如。小计:$ 999而不是SUBTOTAL:€999
我发现gravityforms / includes / fields / class-gf-field-calculation.php是我必须编辑的文件,就是这部分:
return "<div class='ginput_container'>
<input type='hidden' name='input_{$id}.1' value='{$product_name}' class='gform_hidden' />
<span class='ginput_product_price_label'>" . apply_filters( "gform_product_price_{$form_id}", apply_filters( 'gform_product_price', __( 'Price', 'gravityforms' ), $form_id ), $form_id ) . ":</span> <span class='ginput_product_price' id='{$field_id}'>" . esc_html( GFCommon::to_money( $price, $currency ) ) . "</span>
<input type='hidden' name='input_{$id}.2' id='ginput_base_price_{$form_id}_{$this->id}' class='gform_hidden' value='" . esc_attr( $price ) . "'/>
{$quantity_field}
</div>";
}
我可以改变价格&#39;文本,但问题是我之后编辑部分:
<span class='ginput_product_price' id='{$field_id}'>" . esc_html( GFCommon::to_money( $price, $currency ) ) . "</span>
编辑$ price和$ currency时没有任何反应。你能告诉我我做错了什么吗?