- Posts: 2
- Thank you received: 0
Combining 2 Script into one.
2 years 10 months ago #29
by LuxLOL
Combining 2 Script into one. was created by LuxLOL
HI,
I have a hard time to combine this 2 script into one.
Dose someone know how I can get this to work?
I have a hard time to combine this 2 script into one.
Dose someone know how I can get this to work?
<?php
$app = JFactory::getApplication();
$option = $app->input->getString('option');
$view = $app->input->getString('view');
$id = $app->input->getString('id');
$Itemid = $app->input->getString('Itemid');
$start = $app->input->getString('limitstart');
if ($option == 'com_content' && $view == 'category' && $id == '11' && $Itemid == '105' && $start == '') {
if (preg_match('/(MSIE 6.0|MSIE 7.0|MSIE 8.0|MSIE 9.0)/i', $_SERVER['HTTP_USER_AGENT'])) {
echo '<style type="text/css">
#TagCloud {
display: block;
}
</style>';
} else {
echo '<style type="text/css">
#TagCloud {
display: none;
}
</style>';
}
return;
}
?>
Please Log in or Create an account to join the conversation.
- administrator
- Offline
- Administrator
Less
More
- Posts: 96
- Thank you received: 13
2 years 10 months ago - 2 years 10 months ago #32
by administrator
JoomHelper - Free Joomla Extensions and Tutorials.
- Facebook: bit.ly/3Fmq9AN
- Youtube: bit.ly/33onadN
- Donate: bit.ly/3uu8yFs
Replied by administrator on topic Combining 2 Script into one.
Try it:
<?php
$app = JFactory::getApplication();
$option = $app->input->getString('option');
$view = $app->input->getString('view');
$id = $app->input->getString('id');
$Itemid = $app->input->getString('Itemid');
$start = $app->input->getString('limitstart');
return ($option == 'com_content' && $view == 'category' && $id == '11' && $Itemid == '105' && $start == '' && preg_match('/(MSIE 6.0|MSIE 7.0|MSIE 8.0|MSIE 9.0)/i', $_SERVER['HTTP_USER_AGENT']));
?>
JoomHelper - Free Joomla Extensions and Tutorials.
- Facebook: bit.ly/3Fmq9AN
- Youtube: bit.ly/33onadN
- Donate: bit.ly/3uu8yFs
Last edit: 2 years 10 months ago by administrator.
Please Log in or Create an account to join the conversation.
2 years 10 months ago #33
by LuxLOL
Replied by LuxLOL on topic Combining 2 Script into one.
No luck.
I was also trying to execute the "HTTP_USER_AGENT" script part after the Link check was a match.
But i have the feeling that this will not work.
I was also trying to execute the "HTTP_USER_AGENT" script part after the Link check was a match.
But i have the feeling that this will not work.
Please Log in or Create an account to join the conversation.
Latest articles
-
Countdown Module for JoomlaWith robust features and full Joomla compatibility, it’s designed to make managing and displaying countdowns simple yet effective.
-
WordPress Alternatives in 2024: Exploring the Best CMS OptionsThese platforms include Joomla, Drupal, ClassicPress, and JavaScript-based CMS options like Ghost and Strapi.
-
Country Blocker Tool for JoomlaJoomla plugin to block traffic from unwanted countries.
-
Joomla Admin Menu RenameRename extensions on Joomla
-
Joomla Tiktok Embed pluginExplore TikTok on your website.
Any suggestion ?
Here is the working page on the test site:
https://testsite.formalms.org/forma-plugins/375-2factor-authentication-plugin.html
Here the production site:
https://formalms.org/forma-plugins/375-2factor-authentication-plugin.html