Javascript Failures

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
Mon Sep 22, 2014 6:00 pm
Reply with quote
Report this post
Hello, I have bought the Shop and Buy template for Joomla 3 but I am facing many problems.

1) Firstly, I have a problem with the parent items in main menu, please see the attached 1.png. I would like to set a larger width for the parents items of the item "Soaps" in order to be visible.

2) Secondly, when I press to "My Account" from User area (top right corner of the template) the overlay does not cover the whole site, I think there is a failure of javascript to capture the whole height of the site. On the contrary I do not face the same problem when I press on the "My Cart" (maybe you have assigned different javascript to that item). Please see 2.png.

3) Third, there is a problem in the check out phase when in the "Checkout Options" I choose instead of the default "Register account" (a.png) the "Checkout as Guest" then the "Billing Address" is duplicated in the bottom form and I face the problem in b.png. It like something adds the "Billing Address" in place of the number "02".

4) I really need to handle the time of the popup cart appears, is that possible from gk.scripts.js?

Thank you in advance!
User avatar
Fresh Boarder

GK User
Mon Sep 22, 2014 6:15 pm
Reply with quote
Report this post
Hello, I have bought the Shop and Buy template for Joomla 3 but I am facing many problems.

1) Firstly, I have a problem with the parent items in main menu, please see the attached 1.png. I would like to set a larger width for the parents items of the item "Soaps" in order to be visible.

2) Secondly, when I press to "My Account" from User area (top right corner of the template) the overlay does not cover the whole site, I think there is a failure of javascript to capture the whole height of the site. On the contrary I do not face the same problem when I press on the "My Cart" (maybe you have assigned different javascript to that item). Please see 2.png.

3) Third, there is a problem in the check out phase when in the "Checkout Options" I choose instead of the default "Register account" the "Checkout as Guest" then the "Billing Address" is duplicated in the bottom form and I face the problem in b.png. It like something adds the "Billing Address" in place of the number "02".

4) I really need to handle the time of the popup cart appears, is that possible from gk.scripts.js?

Thank you in advance!


Sorry, I also attached some print screens for better understanding.
User avatar
Fresh Boarder

teitbite
Fri Sep 26, 2014 11:32 am
Reply with quote
Report this post
Hi

Please tell me the url to yours site and send me joomla panel access.
User avatar
Moderator

teitbite
Fri Sep 26, 2014 7:52 pm
Reply with quote
Report this post
Hi

1. Please add this to override.css and make sure override is enabled in template settings:

Code: Select all
.gkMenu > ul li div.childcontent {
    overflow: visible !important;
}


2. Same as in point 1, but with this code:

Code: Select all
#gkPopupOverlay {
    position: fixed;
    height: 100% !important;
}


3. Add this code to /layout/blocks/head.php

Code: Select all
<script type="text/javascript">
   (function($) {
   $(document).ready(function() {
      function checkForChanges() {
         $('#billing-address span.gkStep').html('02');
         setTimeout(checkForChanges, 50);
      }

      $(checkForChanges);
   });
   })(jQuery)
</script>


4. Please tell me which cart You have in mind. The popup one is visible till the "x" is being clicked, so I do not understand.
User avatar
Moderator

GK User
Sat Sep 27, 2014 3:18 pm
Reply with quote
Report this post
Thank you very much for your efforts! Everything is fine now. The fourth (4) is already fixed by me.
User avatar
Fresh Boarder

teitbite
Sun Sep 28, 2014 10:01 am
Reply with quote
Report this post
Hi

Great to hear that. Glad I could help :)
User avatar
Moderator


cron