Onze Order Form plugin biedt de mogelijkheid om meerdere formulieren te maken. U kunt machtigingen instellen voor elk formulier en de tekst Toegang geweigerd aanpassen. Als u de Lead Capture plugin heeft, kunt u de inlog-doorverwijspagina aanpassen.
Als u echter meerdere Bestelformulieren heeft, wordt de inlogpagina altijd doorgestuurd naar de pagina waar groothandelsklanten direct na het inloggen worden doorgestuurd, ingesteld onder de Lead Capture plugin. Om dit te omzeilen, kunt u dit codefragment gebruiken. Voeg het toe onder de functions.php van uw child theme of via de WP Code plugin.
add_filter('option_wwof_permissions_noaccess_login_url', function ($url) {
global $wp_query;
// Get the current page ID
$page_id = $wp_query->post->ID;
// Update the page ID (123) and the redirect URL accordingly
if ($page_id == '123') {
return 'https://www.google.com/'; // Change this to the correct URL
}
// Update the page ID (124) and the redirect URL accordingly
if ($page_id == '124') {
return 'https://www.youtube.com/'; // Change this to the correct URL
}
return $url;
});

