Help needed in form POST Method and Action tag
-
//Custom functions for Visual Form Builder Pro
add_filter( ‘vfb_form_action’, ‘vfb_filter_form_action’, 10, 2 );function vfb_filter_form_action( $action, $form_id ){
if ( 2 == $form_id )
return ‘https://www.ccavenue.com/shopzone/cc_details.jsp’;
}The above script is not redirecting to “https://www.ccavenue.com/shopzone/cc_details.jsp” but it is taking me to “https://www.ccavenue.com/?_event_transid=2185852428” URL. I think this problem is because I am not triggering the form using POST method. Please help me in setting the form Method property to POST.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Help needed in form POST Method and Action tag’ is closed to new replies.