Skip to content

Commit

Permalink
Merge branch 'release/1.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed Feb 16, 2020
2 parents 6c6bbf3 + 19db8bb commit 818c9e1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,14 @@ Released under [GPL version 2](https://www.gnu.org/licenses/old-licenses/gpl-2.0

== Changelog ==

= 1.4.0 - 16 February 2020 =
* Added a page Featured Image setting located at `Customize > Theme Settings > Pages > Featured Image`.
* Fixed header overlap light mobile menu cart icon color.
* Fixed overlap dark normal menu cart color.
* Minor WooCommerce archive button hover styling improvement.
* Minor WooCommerce widget styling improvements.
* One page menu: re-add current page indicator on scroll.

= 1.3.12 - 22 December 2019 =
* Resolved WooCommerce checkout overlay issue.

Expand Down
2 changes: 1 addition & 1 deletion woocommerce/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function polestar_woocommerce_scripts() {
'chevron_down' => '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="10" height="10" viewBox="0 0 32 32"><path d="M30.054 14.429l-13.25 13.232q-0.339 0.339-0.804 0.339t-0.804-0.339l-13.25-13.232q-0.339-0.339-0.339-0.813t0.339-0.813l2.964-2.946q0.339-0.339 0.804-0.339t0.804 0.339l9.482 9.482 9.482-9.482q0.339-0.339 0.804-0.339t0.804 0.339l2.964 2.946q0.339 0.339 0.339 0.813t-0.339 0.813z"></path></svg>',
'ajaxurl' => admin_url( 'admin-ajax.php' )
);
wp_localize_script( 'polestar-woocommerce-script', 'polestar_data', $script_data );
wp_localize_script( 'polestar-woocommerce-script', 'polestar_data', $script_data );

}
add_action( 'wp_enqueue_scripts', 'polestar_woocommerce_scripts' );
Expand Down
4 changes: 2 additions & 2 deletions woocommerce/js/jquery.woocommerce.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jQuery( function( $ ) {
if ( ! $( e.target ).closest( '.ordering-selector-wrapper.open-dropdown' ).length ) {
$( '.ordering-selector-wrapper.open-dropdown' ).removeClass( 'open-dropdown' );
}
} );
} );

// Quick View modal.
$( '.product-quick-view-button' ).click( function( e ) {
Expand Down Expand Up @@ -84,7 +84,7 @@ jQuery( function( $ ) {
}
} );
}
} );
} );

if ( $( document ).find( $container ).is( ':hidden' ) ) {
$( document ).find( $container ).find( $content ).empty();
Expand Down

0 comments on commit 818c9e1

Please sign in to comment.