Forum Replies Created
-
AuthorPosts
-
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?
Any idea when we will receive the update for Visual Composer (WPBakery) ?
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.
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/
Great support, fast fix for my problem. THANKS !
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 ?
-
AuthorPosts