For those of you still using osCmax 2.5, jquery changes have broken a few things.
This should fix you up - take backups, of course.
Code:
Three, possibly four steps..
1. Replace includes/javascript/slimbox2.js with supplied updated file (version 2.05). Unzip it!
-------------------------------------------
2. Edit includes/javascript/product_info.js.php
Replace:
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
// Load jQuery
google.load("jquery", "1.4.2");
</script>
with this:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
-------------------------------------------
3. Edit templates/your_template/main_page.tpl.php
Replace:
echo '<script type="text/javascript" src="https://www.google.com/jsapi"></script>';
echo '<script type="text/javascript">' . "\n";
echo '// Load jQuery' . "\n";
echo 'google.load("jquery", "1.4.0");' . "\n";
echo '</script>' . "\n";
with this:
echo '<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>' . "\n";
----------------------------------------
4. If it exists edit templates/your_template/javascript/product_info.js.php
Replace:
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
// Load jQuery
google.load("jquery", "1.4.2");
</script>
with this:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
----------------------------------------------
----------------------------------------------
Donations always gratefully received. PM me if needs be.
Bookmarks