Skip to content

Instantly share code, notes, and snippets.

@rocketgeek
Created July 15, 2024 20:02
Show Gist options
  • Save rocketgeek/d101813a81e4a5548c88466bf2b57fca to your computer and use it in GitHub Desktop.
Save rocketgeek/d101813a81e4a5548c88466bf2b57fca to your computer and use it in GitHub Desktop.
Membership renew direct to checkout
<?php // do not include this line.
add_filter( 'wpmem_wc_renew_url', function( $url, $product_id, $key ) {
global $woocommerce;
$url = $woocommerce->cart->get_checkout_url();
return $url;
}, 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment