Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Ajax Filter closing automatically #20034

    I believe it is because you changed the handles and Javascript toggles in your core theme.

    Current version is:

    // Init sidebar filter
    var wcInitSidebarFilter = function() {
    $(document.body).click( function() {
    $( ‘.jas-filter-wrap’ ).removeClass( ‘opened’ );
    });

    $( ‘body’ ).on( ‘click’, ‘.filter-trigger’, function(e) {
    e.stopPropagation();
    $( ‘.jas-filter-wrap’ ).toggleClass( ‘opened’ );
    $( ‘.close-filter’ ).on( ‘click’, function() {
    $( ‘.jas-filter-wrap’ ).removeClass( ‘opened’ );
    });
    e.preventDefault();
    });
    }

     

    But former version that worked was

    // Init sidebar filter
    var wcInitSidebarFilter = function() {
    $( ‘body’ ).on( ‘click’, ‘.filter-trigger’, function(e) {
    $( ‘.jas-filter-wrap’ ).toggleClass( ‘opened’ );
    $( ‘.close-filter’ ).on( ‘click’, function() {
    $( ‘.jas-filter-wrap’ ).removeClass( ‘opened’ );
    });
    e.preventDefault();
    });
    }

     

    Since your previous version is actually best jQuery practice (as the .click event handler is deprecated in latest jQuery version) I wonder why you decided to change it at all.

    As I am no jQuery expert though, could you please let me know if there’s a way for me to safely change it in my child theme to override the issue?

    in reply to: Product Category Image size acting weird #14084

    Any idea when we will receive the update for Visual Composer (WPBakery) ?

    in reply to: Product Category Image size acting weird #14083

    Oh damn, I would have never thought of going into Woocommerce options themselves. Didn’t expect the fix to be something so straightforward either.

    Support on this theme is just amazing, I keep on being impressed by you guys. Thanks A LOT for that fix Harry.

    in reply to: issue with images and related products #14079

    Hi,

     

    I am having the exact same sizing issue on category pages and the main shop page. Please fix this ASAP, this is a very big visual issue.

    http://support.janstudio.net/forums/topic/product-category-image-size-acting-weird/

    in reply to: Variation Swatsh image cant be deleted #10902

    Great support, fast fix for my problem. THANKS !

    in reply to: CSS of the theme messing up with YITH Ajax Filter #10901

    Sorry, forgot to say thank you ! Looks great now.

    By the way I asked to YITH plugin creators if there is a way to display the categories with correct hierarchy (for example mine is Parent: Femme then child category “Cuir Prestige” should be below) because right now they just display as a mess. They still haven’t answered me, but I believe this has nothing to do with your theme, only with their plugin, right ?

Viewing 6 posts - 1 through 6 (of 6 total)