2017-10-25 3 views

답변

2

양식 제출에 사용자 정의 메시지를 반환하도록 도와주세요

add_action("wpcf7_before_send_mail", "wpcf7_do_something_else"); 
    function wpcf7_do_something_else($cf7) { 

      $wpcf->skip_mail = true;  
      // Here I tried to use jquery or wordpress filter function to display custom message. but nothing is displaying. 


     return $wpcf; 
    } 

, 당신은 그것을 시도 필터를 wpcf7_ajax_json_echo

를 사용할 수 있습니다

add_filter("wpcf7_ajax_json_echo", function ($response, $result) { 


    $response["message"] = "a custom message"; 


    return $response; 

}); 
+0

덕분에 많은 사람을! 그것은 매력처럼 작동합니다. – Ashkar