Ben Wordpress bir form var. O teslim olduğunda, sayfa başka bir sayfaya yönlendirir. Ama sayfa aynı kalmak istiyorum ve bir modal için yerine bir sayfa yönlendirme görünmesini.
Aşağıdaki kod form gönderme kolları functions.php dosyasına değil.
Ben bir modal tanıtmak nerede bu emin değilim. Yönlendirme tetiklenir nerede Ama bu.
function group_buying_subscription()
{
if( isset( $_POST['set-group-buying-subscription'] ) && !isset( $_POST['email_address'] ) ) {
setcookie( 'your-selected-location', $_POST['deal_location'], time( ) + 24 * 60 * 60 * 30, '/' );
wp_redirect( get_term_link( $_POST['deal_location'], 'deals') );
exit();
}
}
Ben başlatmak için gereken yer burası mı?