Skip to content

Commit 61874e7

Browse files
committed
Fix - Retro-compatibility for WooCommerce versions < 3.4.0
1 parent bf23209 commit 61874e7

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
### Unreleased
1+
### 0.5.1: August 20th, 2018
22
* **Fix** - Style WooCommerce notices
3+
* **Fix** - Retro-compatibility for WooCommerce versions < 3.4.0
34

45
### 0.5.0: July 19th, 2018
56
* **Fix** - Bug with Gravity Forms multi page forms

content-product.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
return;
2828
}
2929
?>
30-
<li <?php wc_product_class(); ?>>
30+
<li <?php if(function_exists('wc_product_class')) wc_product_class(); else post_class(); ?>>
3131
<?php
3232
/**
3333
* Hook: woocommerce_before_shop_loop_item.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stormbringer",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "WordPress theme",
55
"license": "Apache-2.0",
66
"repository" : {

stormbringer-child/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stormbringer",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "WordPress theme",
55
"license": "Apache-2.0",
66
"repository" : {

style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Theme URI: https://github.com/nicomollet/stormbringer
44
Github Theme URI: https://github.com/nicomollet/stormbringer
55
Github Branch: master
66
Description: A simple responsive theme based on twitter's bootstrap framework.
7-
Version: 0.5.0
7+
Version: 0.5.1
88
Author: Nicolas Mollet
99
Author URI: http://www.nicolasmollet.com
1010
Text Domain: stormbringer

0 commit comments

Comments
 (0)