This plugin has been moved to the WooCommerce Subscriptions - Do Not Reduce Stock on Renewal repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WooCommerce Subscriptions Reduce Upgrade Batch Size | |
* Plugin URI: | |
* Description: Drastically reduce the size of each batch of data WooCommerce Subscriptions upgrades per request. Handy to avoiding low script timeout settings on Nginx. | |
* Author: Prospress Inc. | |
* Version: 1.0 | |
* Author URI: http://prospress.com | |
*/ | |
function eg_reduce_wcs_upgrade_batch_size( $batch_size ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WooCommerce Subscriptions Change Pending Cancellation Status | |
* Plugin URI: https://gist.github.com/thenbrent/2b2b328b1413e563adfb | |
* Description: Change the name of the "Pending Cancellation" status in WooCommerce Subscriptions to be "Cancelled Payments". | |
* Author: Prospress Inc. | |
* Version: 1.0 | |
* Author URI: http://prospress.com | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WooCommerce Subscriptions Remove Deprecation Handlers | |
* Plugin URI: https://support.woothemes.com/hc/en-us/articles/205214466 | |
* Description: Do not load backward compatibility support in Subscriptions 2.0. | |
* Author: Prospress Inc. | |
* Version: 1.0 | |
* Author URI: http://prospress.com | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WooCommerce Subscription Custom Interval | |
* Description: Add a custom 8 week subscription interval to WooCommerce Subscriptions | |
* Author: Brent Shepherd | |
* Version: 1.0 | |
* License: GPL v2 | |
*/ | |
function eg_add_custom_subscription_interval( $subscription_intervals ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WooCommerce Subscriptions Remove $0.00 Recurring Discount | |
Plugin URI: | |
Description: Do not include a $0.00 recurring discount amount when a coupon is displaying it. For example, instead of display a coupon discount as "$10.00 now then $0.00 / month", display it as "$10.00". | |
Author: | |
Author URI: | |
Version: 0.1 | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WooCommerce Subscriptions No $0 Emails | |
Plugin URI: | |
Description: Do not send processing or completed renewal order emails to customers when the order or renewal is for $0.00. | |
Author: | |
Author URI: | |
Version: 0.1 | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'WP_DEBUG' ) ) { | |
define('WP_DEBUG', true); | |
} | |
if ( ! defined( 'WP_DEBUG_DISPLAY' ) ) { | |
define('WP_DEBUG_DISPLAY', false); | |
} | |
if ( ! defined( 'WP_DEBUG_LOG' ) ) { | |
define('WP_DEBUG_LOG', true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: WooCommerce Subscriptions Reinstate Old Renewal Order Item Name | |
Plugin URI: https://gist.github.com/thenbrent/8e4bda5a53b91addc68b | |
Description: Reinstate the "Renewal of {product_title} purchased in Order {order_id}" string on renewal order items. | |
Author: | |
Author URI: | |
Version: 0.3 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function( window, undefined ) { | |
'use strict'; | |
function WP_API() { | |
this.models = {}; | |
this.collections = {}; | |
this.views = {}; | |
} |