Version Description
- 10.27.2017 =
- Fix - Odd content scrolling behaviour when clicking inline reviews link.
Download this release
Release Info
| Developer | jameskoster |
| Plugin | |
| Version | 1.2.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.2.1 to 1.2.2
- assets/css/style.css +1 -4
- assets/css/style.scss +1 -1
- readme.txt +5 -2
- storefront-product-pagination.php +3 -3
assets/css/style.css
CHANGED
|
@@ -10,10 +10,7 @@
|
|
| 10 |
.storefront-single-product-pagination {
|
| 11 |
z-index: 999999; }
|
| 12 |
.storefront-single-product-pagination h2 {
|
| 13 |
-
|
| 14 |
-
/* IE6, IE7 */
|
| 15 |
-
clip: rect(1px, 1px, 1px, 1px);
|
| 16 |
-
position: absolute !important; }
|
| 17 |
.storefront-single-product-pagination a {
|
| 18 |
display: block;
|
| 19 |
width: 500px;
|
| 10 |
.storefront-single-product-pagination {
|
| 11 |
z-index: 999999; }
|
| 12 |
.storefront-single-product-pagination h2 {
|
| 13 |
+
display: none; }
|
|
|
|
|
|
|
|
|
|
| 14 |
.storefront-single-product-pagination a {
|
| 15 |
display: block;
|
| 16 |
width: 500px;
|
assets/css/style.scss
CHANGED
|
@@ -26,7 +26,7 @@
|
|
| 26 |
z-index: 999999;
|
| 27 |
|
| 28 |
h2 {
|
| 29 |
-
|
| 30 |
}
|
| 31 |
|
| 32 |
a {
|
| 26 |
z-index: 999999;
|
| 27 |
|
| 28 |
h2 {
|
| 29 |
+
display: none;
|
| 30 |
}
|
| 31 |
|
| 32 |
a {
|
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: jameskoster, woothemes
|
| 3 |
Tags: woocommerce, ecommerce, products, storefront, pagination, next, previous
|
| 4 |
Requires at least: 4.0.0
|
| 5 |
-
Tested up to: 4.
|
| 6 |
-
Stable tag: 1.2.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -36,6 +36,9 @@ The links will appear on any single product page, providing there is more than o
|
|
| 36 |
|
| 37 |
== Changelog ==
|
| 38 |
|
|
|
|
|
|
|
|
|
|
| 39 |
= 1.2.1 - 02.07.2017 =
|
| 40 |
* Fix - Errors when no next/previous product exists.
|
| 41 |
|
| 2 |
Contributors: jameskoster, woothemes
|
| 3 |
Tags: woocommerce, ecommerce, products, storefront, pagination, next, previous
|
| 4 |
Requires at least: 4.0.0
|
| 5 |
+
Tested up to: 4.8.2
|
| 6 |
+
Stable tag: 1.2.2
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 36 |
|
| 37 |
== Changelog ==
|
| 38 |
|
| 39 |
+
= 1.2.2 - 10.27.2017 =
|
| 40 |
+
* Fix - Odd content scrolling behaviour when clicking inline reviews link.
|
| 41 |
+
|
| 42 |
= 1.2.1 - 02.07.2017 =
|
| 43 |
* Fix - Errors when no next/previous product exists.
|
| 44 |
|
storefront-product-pagination.php
CHANGED
|
@@ -3,11 +3,11 @@
|
|
| 3 |
* Plugin Name: Storefront Product Pagination
|
| 4 |
* Plugin URI: http://woothemes.com/storefront/
|
| 5 |
* Description: Add unobstrusive links to next/previous products on your WooCommerce single product pages.
|
| 6 |
-
* Version: 1.2.
|
| 7 |
* Author: WooThemes
|
| 8 |
* Author URI: http://woothemes.com/
|
| 9 |
* Requires at least: 4.0.0
|
| 10 |
-
* Tested up to: 4.
|
| 11 |
*
|
| 12 |
* Text Domain: storefront-product-pagination
|
| 13 |
* Domain Path: /languages/
|
|
@@ -90,7 +90,7 @@ final class Storefront_Product_Pagination {
|
|
| 90 |
$this->token = 'storefront-product-pagination';
|
| 91 |
$this->plugin_url = plugin_dir_url( __FILE__ );
|
| 92 |
$this->plugin_path = plugin_dir_path( __FILE__ );
|
| 93 |
-
$this->version = '1.2.
|
| 94 |
|
| 95 |
register_activation_hook( __FILE__, array( $this, 'install' ) );
|
| 96 |
|
| 3 |
* Plugin Name: Storefront Product Pagination
|
| 4 |
* Plugin URI: http://woothemes.com/storefront/
|
| 5 |
* Description: Add unobstrusive links to next/previous products on your WooCommerce single product pages.
|
| 6 |
+
* Version: 1.2.2
|
| 7 |
* Author: WooThemes
|
| 8 |
* Author URI: http://woothemes.com/
|
| 9 |
* Requires at least: 4.0.0
|
| 10 |
+
* Tested up to: 4.8.2
|
| 11 |
*
|
| 12 |
* Text Domain: storefront-product-pagination
|
| 13 |
* Domain Path: /languages/
|
| 90 |
$this->token = 'storefront-product-pagination';
|
| 91 |
$this->plugin_url = plugin_dir_url( __FILE__ );
|
| 92 |
$this->plugin_path = plugin_dir_path( __FILE__ );
|
| 93 |
+
$this->version = '1.2.2';
|
| 94 |
|
| 95 |
register_activation_hook( __FILE__, array( $this, 'install' ) );
|
| 96 |
|
