Skip to content

Commit 38ced7f

Browse files
committed
Howdy 0.2.0
1 parent 961ee32 commit 38ced7f

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,9 @@ Download and install just like any other WordPress plugin. If you want to be rea
3131

3232
## Changelog
3333

34+
### 0.2.0 - 2015.09.04
35+
* Feature - Subscriptions 2.0 Compatibility
36+
* Fix - Fix is_ssl() when using Forward
37+
3438
### 0.1.0 - 2015.07.25
3539
* Initial Release

includes/class-wc-dev-helper-subscriptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public function maybe_render_renewal_success_message() {
141141
$subscription = wcs_get_subscription( absint( $_REQUEST['id'] ) );
142142

143143
if ( $subscription instanceof WC_Subscription ) {
144-
echo '<div class="updated"><p>' . sprintf( esc_html__( 'Subscription renewal processed. %sView Renewal Order%s' ), '<a href="' . wcs_get_edit_post_link( $subscription->get_last_order() ) . '">', ' &#8594;</a>' ) . '</p></div>';
144+
echo '<div class="updated"><p>' . sprintf( esc_html__( 'Subscription renewal processed. %sView Renewal Order%s', 'woocommerce-dev-helper' ), '<a href="' . wcs_get_edit_post_link( $subscription->get_last_order() ) . '">', ' &#8594;</a>' ) . '</p></div>';
145145
}
146146
}
147147

woocommerce-dev-helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: A simple plugin for helping develop/debug WooCommerce & extensions
66
* Author: SkyVerge
77
* Author URI: http://www.skyverge.com
8-
* Version: 0.1.0
8+
* Version: 0.2.0
99
* Text Domain: woocommerce-dev-helper
1010
* Domain Path: /i18n/languages/
1111
*

0 commit comments

Comments
 (0)