Viewing 1 replies (of 1 total)
  • Plugin Author Abiral Neupane

    (@abiralneupane)

    Currently it do not have such feature, but if you are a developer you can use WordPress hook to make the plugin work like you wanted.

    Anyway, you can paste following code in your current theme’s functions.php file

    add_filter( 'iul_action', 'modify_iul_action' );
    function modify_iul_action($action){
    	$action['action_type'] = 5;
    	$action['action_value'] = 'https://google.com';
    	return $action;
    }

    Where action_type = 5 means, it will not logout you from the site but, redirect you to the custom url. If you want to logout user and redirect user to custom url, use 2 instead of 5.

    Cheers

Viewing 1 replies (of 1 total)
  • The topic ‘Custom Redirect’ is closed to new replies.