Woocommerce Subscriptions – change payment date
-
trying to simply change the next payment date of a subsription but nojoy with this:
add_action(‘admin_head’, ‘fm_upate_next_payment_datetime’);
function fm_upate_next_payment_datetime () {
global $woocommerce;
$order_id = 12851;
//$subscription_id = wcs_get_subscription( $order_id );$subscription = new WC_Subscription(12852);
$next_payment = date( ‘Y-m-d H:i:s’, ‘2016-10-28 00:10:10’ );
$subscription->update_dates( array( ‘next_payment’ => $next_payment ) );
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Woocommerce Subscriptions – change payment date’ is closed to new replies.