Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter hs24

    (@hs24)

    Hi,

    Fixed it. Problem was the theme (Porto) and found this code that solved it:

    add_action( 'wp_footer', 'wooco_fix_for_porto_theme', 99 );
    function wooco_fix_for_porto_theme() {
    	?>
        <script type="text/javascript">
          (function($) {
            $(function() {
              // ready
              setTimeout(function() {
                $('.wooco-wrap').each(function() {
                  wooco_init_selector();
                  wooco_init($(this), 'load');
                });
              }, 300);
            });
          })(jQuery);
        </script>
    	<?php
    }

    Kind regards

    H.

Viewing 1 replies (of 1 total)