Welcome to the tour of our new site.

If you wish to run the tour again click the info icon in the header, or refresh the page.

{source}<?php
defined('_JEXEC') or die;

use Joomla\CMS\Factory;

$isRetail = false;
$isWholesale = false;
$isGuest = false;

// Get user
$user = Factory::getUser();

// Session
$session = Factory::getSession();

// Detect login state
if ($user->id !== 0) {
$isWholesale = $session->get('isWholesale', false, 'ersd');
} else {
$isGuest = true;
}

// Joomla 4/5 compatible client detection
$app = Factory::getApplication();
$isMobile = $app->client->mobile;

// Helper to load scripts
function loadScript($path)
{
echo '<script src="' . $path . '" type="text/javascript"></script>';
}

// Decision logic
if ($isGuest) {

loadScript(
$isMobile
? 'templates/vp_merchant/js/welcome-guest-mobile.js'
: 'templates/vp_merchant/js/welcome-guest.js'
);

} elseif ($isRetail) {

loadScript(
$isMobile
? 'templates/vp_merchant/js/welcome-mobile.js'
: 'templates/vp_merchant/js/welcome.js'
);

} elseif ($isWholesale === 'true' || $isWholesale === true) {

loadScript(
$isMobile
? 'templates/vp_merchant/js/welcome-wholesale-mobile.js'
: 'templates/vp_merchant/js/welcome-wholesale.js'
);

} else {

loadScript(
$isMobile
? 'templates/vp_merchant/js/welcome-mobile.js'
: 'templates/vp_merchant/js/welcome.js'
);

}
?>
{/source}