В файле engine/modules/sitelogin.php ищите код:
if( isset( $_REQUEST['action'] ) AND $_REQUEST['action'] == "logout" ) {
if (isset($_COOKIE) and is_array($_COOKIE) and count($_COOKIE)) {
foreach ($_COOKIE as $key => $value) {
set_cookie($key, '', 0);
}
}
session_unset();
session_destroy();
header( "Location: ".str_replace("index.php","",$_SERVER['PHP_SELF']) );
die('Redirect to main page');
}
И меняете страницу редиректа в этой строке на нужный вам адрес:
header( "Location: ".str_replace("index.php","",$_SERVER['PHP_SELF']) );