簡體   English   中英

如何在 Conatct Form 7 WP 中選中復選框

[英]How to check checkbox is checked or not in Conatct Form 7 WP

我是 wordpress 的新手。 我已經使用聯系表格 7 在 wordpress 頁面中創建了表格。在完成表格數據之后,我正在處理 functions.php 文件中的數據。 最近我在表單中添加了新的單個復選框。 這是我的疑問,現在我必須根據選中/未選中復選框編寫條件。

這是我的表單代碼

    <div class="col-md-6">
        <label> Full Name <span class="required">*</span></label>
        [text* fullname]
    </div>

    <div class="col-md-6">
        <label> Mobile No <span class="required">*</span></label>
        [tel* mobno]
    </div> 

    <div class="col-md-6">
        <label> Car Model <span class="required">*</span></label>
        [text* carmodel]
    </div>

    <div class="col-md-6">
        [checkbox next_service_date_chk "I don't know my Next Scheduled Service Date"]
    </div>

    <div class="col-md-6">
        [submit id:submit "Submit"]
    </div>
</div>

我的函數。php 文件代碼

function serviceform( $contact_form ) {

  $id = $contact_form->id;
  $submission = WPCF7_Submission::get_instance();
    if ( $submission ) {
        $posted_data = $submission->get_posted_data();
    }

  if ( '8371' == $id ) {
    $name =  $posted_data['fullname'];  
    $carmodel =  $posted_data['carmodel']; 
    $mobno =  $posted_data['mobno']; 

    $next_service_date_chk =$posted_data['next_service_date_chk'];

    if($next_service_date_chk == true){
     $message1 = urlencode("custome message one");
    }
    else{
     $message1=urlencode("custome message two");
    }

    //sms to customer
    file_get_contents('http://hpsms.dial4sms.com/api/v4/?api_key=xxxxxxxxxxxxxxxxxxxxx&method=sms&message='.$message1.'&to='.$mobno.'&type=2&sender=XXXXXX');
}
}

add_filter( 'wpcf7_support_html5_fallback', '__return_true' );

嘗試這樣做,因為您的復選框作為數組返回。 你正在做的是定義它是否有一個價值,這是什么。

此外,聯系表格 7 object 應使用CF7 Docs方法而不是 object 的值來獲取

/* Don't do this, since id property is no longer accessible. */
$id = $contact_form->id; // Wrong.

/* Use id() method instead. */
$id = $contact_form->id();

更新了 function

function serviceform( $contact_form ) {
  // Use function id(); to get id of object $contact_form    
  if ( '8371' !== $contact_form->id() ) return;
  $submission = WPCF7_Submission::get_instance();
    if ( $submission ) {
        $posted_data = $submission->get_posted_data();
    }
    $name =  $posted_data['fullname'];  
    $carmodel =  $posted_data['carmodel']; 
    $mobno =  $posted_data['mobno']; 

    // Checkbox is returned as array. Check if empty.
    $next_service_date_chk = !empty($posted_data['next_service_date_chk'][0]) ? true : false;

    if($next_service_date_chk == true){
        $message1 = urlencode("custome message one");
    }
    else{
        $message1=urlencode("custome message two");
    }

    //sms to customer
    file_get_contents('http://hpsms.dial4sms.com/api/v4/?api_key=xxxxxxxxxxxxxxxxxxxxx&method=sms&message='.$message1.'&to='.$mobno.'&type=2&sender=XXXXXX');
}

而不是這個

$next_service_date_chk =$posted_data['next_service_date_chk'];

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM