To make Storefront v2.5/2.6 redirect to a different page rather than just sit at the "You have logged off successfully" page, edit the "custom.wrstrings.en.js" file in the contrib folder of the Web Store. By default this will be located at "C:\inetpub\wwwroot\Citrix\<StoreName>Web\contrib".
If you have not created any customizations, select everything in the file and replace with the following:
(function ($) {
$.localization.customStringBundle('en', {
YouAreLoggedOff: 'You have logged off successfully. <br>'
+'You are being redirected to <Enter your web page here or delete this line>'
+'<script type="text/javascript">'
+'window.location.replace("http://www.czerno.com");'
+'</script>'
});
})(jQuery);
I have only tested this on Storefront 2.5 and 2.6.
For more info on customizing Storefront, refer to this blog: http://blogs.citrix.com/2014/04/04/customizing-receiver-for-web-2-5/
UPDATE for Storefront v3.x:
Here is what I did for Storefront v3.x:
Edit:
"\inetpub\wwwroot\Citrix\<StoreWeb>\custom\strings.en.js"
(function ($) {
$.localization.customStringBundle("en", {
Example1: "This is an example",
Example2: "This is another example"
});
})(jQuery);
Add below Example2 (or replace both the examples):
YouHaveLoggedOff:'You have logged off successfully.<br>You are being redirected to Czerno.com<script type="text/javascript">window.location.replace("http://www.czerno.com");</script>'
For more info on customizing Storefront 3, refer to this blog: http://blogs.citrix.com/2015/09/04/storefront-3-web-customization-branding-your-deployment/
BE SURE TO CLEAR YOUR CACHE WHEN TESTING!