Skip to content

Commit

Permalink
Release new version 4.2.7
Browse files Browse the repository at this point in the history
= 4.2.7 - 2019/08/01 =
* This maintenance upgrade is to fix a style conflict with fontawesome icons
* Fix - fontawesome icons not able to get correct style on frontend when the fontawesome script is loaded on the page by theme or another plugin.
  • Loading branch information
alextuan committed Aug 1, 2019
1 parent 4fe6ad7 commit b9758e6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
10 changes: 10 additions & 0 deletions assets/css/wc_predictive_search.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
.wc_ps_container * {
box-sizing: border-box !important;
}
.svg-inline--fa {
box-sizing: content-box !important;
}
.wc_ps_container {
border-radius: 4px;
border: 1px solid #cdcdcd;
Expand Down Expand Up @@ -128,6 +131,10 @@
text-align: center;
vertical-align: middle;
padding: 0 5px;

}
.wc_ps_container svg.wc_ps_nav_submit_icon {
box-sizing: content-box !important;
}
.wc_ps_container .wc_ps_nav_submit:hover .wc_ps_nav_submit_icon {
color: #fff;
Expand Down Expand Up @@ -185,6 +192,9 @@
right: 5px;
top: 0;
}
.wc_ps_container svg.wc_ps_searching_icon {
top: calc( 35px/2 - 14px/2 );
}

/* Search Bar Sizes */
.wc_ps_container .wc_ps_nav_left,
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: a3rev, nguyencongtuan
Tags: WooCommerce search, Predictive Search, WooCommerce, Predictive Search, Live Search, e-commerce, wordpress ecommerce
Requires at least: 4.5
Tested up to: 5.2.2
Stable tag: 4.2.6
Stable tag: 4.2.7
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -167,6 +167,10 @@ You can use this plugin only when you have installed the WooCommerce plugin.

== Changelog ==

= 4.2.7 - 2019/08/01 =
* This maintenance upgrade is to fix a style conflict with fontawesome icons
* Fix - fontawesome icons not able to get correct style on frontend when the fontawesome script is loaded on the page by theme or another plugin.

= 4.2.6 - 2019/06/29 =
* This is a maintenance upgrade to fix a potentially fatal error conflict with sites running PHP 7.3 plus compatibility with WordPress v 5.2.2 and WooCommerce 3.6.4
* Tweak - Test for compatibility with WooCommerce 3.6.4
Expand Down Expand Up @@ -783,6 +787,9 @@ You can use this plugin only when you have installed the WooCommerce plugin.

== Upgrade Notice ==

= 4.2.7 =
This maintenance upgrade is to fix a style conflict with fontawesome icons

= 4.2.6 =
This is a maintenance upgrade to fix a potentially fatal error conflict with sites running PHP 7.3 plus compatibility with WordPress v 5.2.2 and WooCommerce 3.6.4

Expand Down
5 changes: 5 additions & 0 deletions templates/dynamic-styles/sidebar-template-style.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
}
@sidebar_loading_icon_size: <?php echo $sidebar_loading_icon_size; ?>px;
@sidebar_loading_icon_color: <?php echo $sidebar_loading_icon_color; ?>;
@sidebar_loading_icon_top_postition: ~"calc( @sidebar_container_height/2 - @sidebar_loading_icon_size/2 )";

/* Sidebar PopUp Variables */
.sidebar_popup_border() {
Expand Down Expand Up @@ -212,6 +213,10 @@
font-size: @sidebar_loading_icon_size;
color: @sidebar_loading_icon_color;
}

svg.wc_ps_searching_icon {
top: @sidebar_loading_icon_top_postition;
}
}
}

Expand Down
4 changes: 2 additions & 2 deletions wc-predictive-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Predictive Search for WooCommerce
Plugin URI: https://a3rev.com/shop/woocommerce-predictive-search/
Description: With WooCommerce Predictive Search Lite you can add an awesome Predictive Products Search widget to any widgetized area on your site.
Version: 4.2.6
Version: 4.2.7
Author: a3rev Software
Author URI: https://www.a3rev.com/
Requires at least: 4.5
Expand Down Expand Up @@ -40,7 +40,7 @@
define("WOO_PREDICTIVE_SEARCH_DOCS_URI", "https://docs.a3rev.com/user-guides/woocommerce/woo-predictive-search/");

define( 'WOOPS_KEY', 'woo_predictive_search' );
define( 'WOOPS_VERSION', '4.2.6' );
define( 'WOOPS_VERSION', '4.2.7' );
define( 'WOOPS_G_FONTS', true );

/**
Expand Down

0 comments on commit b9758e6

Please sign in to comment.