Problem with News Show Pro GK5 in the menu bar

Rate this topic: Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.3.50 out of 6 based on 2 vote(s)
GK User
Wed Jul 16, 2014 2:50 pm
Reply with quote
Report this post
Hello there,
I recently implemented several modules "News Show Pro GK5" in my menu bar at the top but this creates problems with the social buttons on the content, Cookie Consent plugin that no longer sign appears and Google Analytics that comtabilise no more visits.

I also noticed a type error "Uncaught TypeError: undefined is not a function"

The module are yet functional, I changed the configuration of the modules, but this changes nothing.
With other modules, there are no errors and no this problem.

Do you have any idea? thank you in advance.
User avatar
Junior Boarder

GK User
Wed Jul 16, 2014 4:46 pm
Reply with quote
Report this post
It seems that the problem is solved by adding to the line 7 gk.menu.js :

Code: Select all
el = jQuery (el);


Before:
Code: Select all
   if(jQuery('#gkExtraMenu')) {
           // fix for the iOS devices     
               jQuery('#gkExtraMenu ul li span').each(function(el) {
               el.attr('onmouseover', '');
           });


After:
Code: Select all
   if(jQuery('#gkExtraMenu')) {
           // fix for the iOS devices     
               jQuery('#gkExtraMenu ul li span').each(function(el) {
               el = jQuery(el);
               el.attr('onmouseover', '');
           });


Can you tell me if I have solved the problem or just hidden error? :whistle:
User avatar
Junior Boarder

GK User
Fri Sep 05, 2014 2:47 pm
Reply with quote
Report this post
The problem is still present in the new version is even worse if I do aplique by the patch that I quoted above. :|
User avatar
Junior Boarder


cron