Skip to content

Commit

Permalink
Fix - Retro-compatibility for WooCommerce versions < 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomollet committed Aug 20, 2018
1 parent bf23209 commit 61874e7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### Unreleased
### 0.5.1: August 20th, 2018
* **Fix** - Style WooCommerce notices
* **Fix** - Retro-compatibility for WooCommerce versions < 3.4.0

### 0.5.0: July 19th, 2018
* **Fix** - Bug with Gravity Forms multi page forms
Expand Down
2 changes: 1 addition & 1 deletion content-product.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
return;
}
?>
<li <?php wc_product_class(); ?>>
<li <?php if(function_exists('wc_product_class')) wc_product_class(); else post_class(); ?>>
<?php
/**
* Hook: woocommerce_before_shop_loop_item.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stormbringer",
"version": "0.5.0",
"version": "0.5.1",
"description": "WordPress theme",
"license": "Apache-2.0",
"repository" : {
Expand Down
2 changes: 1 addition & 1 deletion stormbringer-child/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stormbringer",
"version": "0.5.0",
"version": "0.5.1",
"description": "WordPress theme",
"license": "Apache-2.0",
"repository" : {
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/nicomollet/stormbringer
Github Theme URI: https://github.com/nicomollet/stormbringer
Github Branch: master
Description: A simple responsive theme based on twitter's bootstrap framework.
Version: 0.5.0
Version: 0.5.1
Author: Nicolas Mollet
Author URI: http://www.nicolasmollet.com
Text Domain: stormbringer
Expand Down

0 comments on commit 61874e7

Please sign in to comment.