Version Description
- 01.29.2018 =
- Fix - Replaced wrong text domains. Correct text domain is
storefront-product-pagination
.
Download this release
Release Info
Developer | woothemes |
Plugin | Storefront Product Pagination |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
- readme.txt +7 -3
- storefront-product-pagination.php +4 -4
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Storefront Product Pagination ===
|
2 |
-
Contributors: jameskoster,
|
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,10 @@ The links will appear on any single product page, providing there is more than o
|
|
36 |
|
37 |
== Changelog ==
|
38 |
|
|
|
|
|
|
|
|
|
39 |
= 1.2.2 - 10.27.2017 =
|
40 |
* Fix - Odd content scrolling behaviour when clicking inline reviews link.
|
41 |
|
1 |
=== Storefront Product Pagination ===
|
2 |
+
Contributors: jameskoster, tiagonoronha, automattic
|
3 |
Tags: woocommerce, ecommerce, products, storefront, pagination, next, previous
|
4 |
Requires at least: 4.0.0
|
5 |
+
Tested up to: 4.9.2
|
6 |
+
Stable tag: 1.2.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
36 |
|
37 |
== Changelog ==
|
38 |
|
39 |
+
|
40 |
+
= 1.2.3 - 01.29.2018 =
|
41 |
+
* Fix - Replaced wrong text domains. Correct text domain is `storefront-product-pagination`.
|
42 |
+
|
43 |
= 1.2.2 - 10.27.2017 =
|
44 |
* Fix - Odd content scrolling behaviour when clicking inline reviews link.
|
45 |
|
storefront-product-pagination.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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
|
@@ -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 |
|
@@ -249,7 +249,7 @@ final class Storefront_Product_Pagination {
|
|
249 |
* Add a new section
|
250 |
*/
|
251 |
$wp_customize->add_section( 'spp_section' , array(
|
252 |
-
'title' => __( 'Product Pagination', 'storefront-
|
253 |
'priority' => 55,
|
254 |
) );
|
255 |
|
@@ -367,7 +367,7 @@ final class Storefront_Product_Pagination {
|
|
367 |
|
368 |
echo '<nav class="storefront-single-product-pagination">';
|
369 |
|
370 |
-
echo '<h2>' . esc_attr( __( 'More products', 'storefront' ) ) . '</h2>';
|
371 |
|
372 |
if ( $previous_product && $previous_product_data->is_visible() ) {
|
373 |
previous_post_link( '%link', $previous_product_thumbnail . '<span class="title">%title</span>', $in_same_term, '', $taxonomy );
|
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.3
|
7 |
* Author: WooThemes
|
8 |
* Author URI: http://woothemes.com/
|
9 |
* Requires at least: 4.0.0
|
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.3';
|
94 |
|
95 |
register_activation_hook( __FILE__, array( $this, 'install' ) );
|
96 |
|
249 |
* Add a new section
|
250 |
*/
|
251 |
$wp_customize->add_section( 'spp_section' , array(
|
252 |
+
'title' => __( 'Product Pagination', 'storefront-product-pagination' ),
|
253 |
'priority' => 55,
|
254 |
) );
|
255 |
|
367 |
|
368 |
echo '<nav class="storefront-single-product-pagination">';
|
369 |
|
370 |
+
echo '<h2>' . esc_attr( __( 'More products', 'storefront-product-pagination' ) ) . '</h2>';
|
371 |
|
372 |
if ( $previous_product && $previous_product_data->is_visible() ) {
|
373 |
previous_post_link( '%link', $previous_product_thumbnail . '<span class="title">%title</span>', $in_same_term, '', $taxonomy );
|