Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Nope. You would have to modify this code to check multiple values:library/XenForo/Helper/Criteria.php[code] // browsing within the specified view case 'view': { if (!isset($params['viewName']) || strtolower($params['viewName']) != strtolower($data['name'])) { return false; } } break; // viewing the specified content template case 'template': { if (!isset($params['contentTemplate']) || strtolower($params['contentTemplate']) != strtolower($data['name'])) { return false; } } break;[/code]
Nope. You would have to modify this code to check multiple values:
library/XenForo/Helper/Criteria.php
[code]
// browsing within the specified view
case 'view':
{
if (!isset($params['viewName']) || strtolower($params['viewName']) != strtolower($data['name']))
return false;
}
break;
// viewing the specified content template
case 'template':
if (!isset($params['contentTemplate']) || strtolower($params['contentTemplate']) != strtolower($data['name']))
[/code]
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences