Okay
  Public Ticket #2132753
Woocommerce templates/tweaks
Closed

Comments

  • Robthijs started the conversation

    Hello there!

    Question, I've updated Woocommerce and I got a notification that the theme templates are out of date. Could you update them?

    And I've found 2 things that might have to be tweaked:

    Menu > When you tap the hamburger icon the menu drops down, but if you tap outside of the dropdown, it should collapse. This doesn't happen yet. 

    Filtering on Freelancer homepage on iPhone> The first two links don't show the content the first time you tap on them. Only when you've tried them all: 

    https://neuronthemes.com/kyoto/home-freelancer/

    Would be great if this could be fixed!

    Rob


  •  675
    Neuron replied

    Hi,

    1) Please install a fresh copy of Kyoto, we have already fixed the issues on 1.1.0.

    2) and 3)

    First you need to install a plugin where you can insert JavaScript, the plugin name is Insert Headers and Footers

    https://wordpress.org/plugins/insert-headers-and-footers/

    After installing, go to the settings and add the following javascript.

    <script>
    jQuery(function($) {
        $('body').on('click', function() {
            $('.m-nav-menu--mobile').removeClass('active');
        });     $('.m-filters ul li a').on('click', function() {
            window.dispatchEvent(new Event('resize'));
        });
    });
    </script>

    The first click is for the menu and the other one for the filters.

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • Robthijs replied

    Thanks! I didn't see that there was an update. Is it in the Themeforest depository? I still see v1.0 when I download. 

  •   Neuron replied privately