我正在处理重力表格,我需要从Woocommerce获取订单号。当用户下订单时,订单号应该传递给表单,以便用户可以管理该订单的更多内容。 我正在使用这些插件: 1. Woocommerce 2.重力形式 3.重力形式产品附件
我需要在Gravity Form Select中显示订单号,如下所示:
<select>
<option value="">Please Select the Order Number</option>
<option value="28">28</option>
<option value="30">30</option>
</select>
以下是我用来从wordpress模板文件中获取此功能的代码。对于此模板页面,我使用Gravity表单短代码来显示表单。这段代码使用该登录用户的订单号制作一个select tag class =“hide”,我使用css隐藏它并调用函数clone并追加,以便克隆字段值并将其附加到重力形式select fields id #input_3_2。
<?php if ( is_user_logged_in() ) {
$customer_orders = get_posts( apply_filters( 'woocommerce_my_account_my_orders_query', array(
'numberposts' => $order_count,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order',
'post_status' => 'publish'
) ) );?>
<?PHP if ( $customer_orders ) : ?>
<select class="hide">
<?php
foreach ( $customer_orders as $customer_order ) {
$order = new WC_Order();
$order->populate( $customer_order );
$item_count = $order->get_item_count();
?>
<option value="<?php echo $order->get_order_number(); ?>"><?php echo $order->get_order_number(); ?></option>
<?php
}
?>
<?php endif; ?>
</select>
<script>
jQuery(document).ready(function() {
jQuery('select.hide').find('option').clone().appendTo('#input_3_2');
});
</script>
此代码有效,但有缺点,我知道这不是完美的方式。我希望functions.php像下面的代码一样处理这个功能,但是动态地。
add_filter('gform_field_content', 'modify_field', 10, 5);
function modify_field($modify_html, $field){
if($field['formId'] == 6){
if($field['id'] == 5){$modify_html = str_replace("<option value='' >Please Select Your Order Number</option>","<option value='27'>27</option><option value='30'>30</option>",$modify_html);}
}
return $modify_html;
}
答案 0 :(得分:0)
使用以下方法可以实现在您的案例中动态加载选项的功能。