Citrix Storefront - Adventures in customization - Add a help button to your Storefront UI

27 Dec 2017

This customization is pretty easy. Add the following to your custom.js file:

CTXS.ExtensionAPI.addHelpButton(
	function onClick() {
	CTXS.ExtensionAPI.openUrl("http://www.google.ca");
	}
)

Replace “http://www.google.ca” with the URL you want your help screen to be.