Hover animation doesnt work in Shop- Storebox

Commercial shopping Joomla template to easy create webshop with various extensions supported like ViruteMart, K2 and K2Store.
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sun Jan 25, 2015 10:07 pm
Reply with quote
Report this post
Hey guys, on the shop frontpage with the categories and featured items etc, the mouse hover over animation doesnt work, it seems to be working on all the other pages but not on the front page of the shop which is weird

any help would be appreciated !

Thanks in advanced

Luke
User avatar
Fresh Boarder

GK User
Mon Jan 26, 2015 5:17 pm
Reply with quote
Report this post
Could you please post an url to your site?
User avatar
Moderator

GK User
Tue Jan 27, 2015 1:11 pm
Reply with quote
Report this post
artek.co.za

the hover animation doesnt work on this page - http://artek.co.za/index.php/shop
User avatar
Fresh Boarder

GK User
Wed Jan 28, 2015 6:24 pm
Reply with quote
Report this post
Could you please check if your template is updated?
User avatar
Moderator

GK User
Wed Jan 28, 2015 6:33 pm
Reply with quote
Report this post
it says the template is up to date , and the version is 3.15 .1 in the description, just in case its not detecting updates correctly, thats the version i have
User avatar
Fresh Boarder

GK User
Wed Jan 28, 2015 8:02 pm
Reply with quote
Report this post
Please do one more thing - please backup your current template files, download template from our site and reupload it via ftp replacing current files.
Also - is it J2.x or 3.x installation?
User avatar
Moderator

GK User
Thu Jan 29, 2015 1:08 pm
Reply with quote
Report this post
Hey, I will do that now, it is the version 3.x Installation, i reinstalled it a few times to try fix it, but i didnt re-download the files.

Will get back to you ASAP

Thanks
User avatar
Fresh Boarder

GK User
Sat Jan 31, 2015 9:16 pm
Reply with quote
Report this post
Hey Cyberek,

I downloaded the template and reuploaded it and did a fresh install and still have the same issue : /

Luke
User avatar
Fresh Boarder

GK User
Mon Feb 02, 2015 7:53 pm
Reply with quote
Report this post
Please send me a PM with:
1. URL to your website
2. login and password of user with admin/super-admin privileges (please create one for me)
3. ftp data (host, user, password)
4. link to this thread
User avatar
Moderator

GK User
Tue Feb 03, 2015 11:18 pm
Reply with quote
Report this post
Done :)
User avatar
Fresh Boarder

GK User
Mon Feb 09, 2015 7:22 pm
Reply with quote
Report this post
Anything?
User avatar
Fresh Boarder

GK User
Thu Jun 18, 2015 3:19 pm
Reply with quote
Report this post
Do you find solution for this issus? If so, share please...
User avatar
Fresh Boarder

GK User
Mon Jun 22, 2015 7:43 am
Reply with quote
Report this post
I did not received PM form any of you guys.
Could you please send it again?
User avatar
Moderator

GK User
Fri Jun 26, 2015 7:46 am
Reply with quote
Report this post
Please edit this file:
Code: Select all
/templates/gk_storebox/js/gk.scripts.js

Find this fragment (round 288 line):
Code: Select all
// Function to change styles
function changeStyle(style){
   var file1 = $GK_TMPL_URL+'/css/style'+style+'.css';
   var file2 = $GK_TMPL_URL+'/css/typography/typography.style'+style+'.css';
   var file3 = $GK_TMPL_URL+'/css/typography/typography.iconset.style'+style+'.css';
   jQuery('head').append('<link rel="stylesheet" href="'+file1+'" type="text/css" />');
   jQuery('head').append('<link rel="stylesheet" href="'+file2+'" type="text/css" />');
   jQuery('head').append('<link rel="stylesheet" href="'+file3+'" type="text/css" />');
   jQuery.cookie('gk_storebox_j30_style', style, { expires: 365, path: '/' });
}


jQuery(window).ready(function() {


And just before line:
Code: Select all
jQuery(window).ready(function() {


please insert this code:
Code: Select all
/* VirtueMart addons */
window.addEvent('domready', function() {
   
   var products = document.getElements('.browse-view .product');
   var categories = document.getElements('.category-view .category');
   var f_products = document.getElements('.featured-view .product');
   var l_products = document.getElements('.latest-view .product');
   var t_products = document.getElements('.topten-view .product');
   var r_products = document.getElements('.recent-view .product');
   
   [products, categories, f_products, l_products, t_products, r_products].each(function(p) {
      if(p.length > 0) {
         p.each(function(item,i) {
            item.addEvents({
               "mouseenter": function() {
                  item.addClass('active');
               },
               "mouseleave": function() {
                  item.removeClass('active');
               }
            });
         });
      }
   });
});
User avatar
Moderator

GK User
Fri Jun 26, 2015 7:48 am
Reply with quote
Report this post
I have also submitted this issue to our devteam.
User avatar
Moderator


cron