Combining 2 Script into one.

2 years 1 month ago #29 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?
<?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.

2 years 1 month ago - 2 years 1 month ago #32 by administrator
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

Please Log in or Create an account to join the conversation.

2 years 1 month 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.

Please Log in or Create an account to join the conversation.