I had a client with a request that i didn’t think of until I spoke with him, he told me that clients on their website should be able to skip one month of subscription but keep the subscription as Active. That means we cannot change the status of the subscription. Well, in case you need it for any reason, or a client request like me. You can achieve this with the following code snippet in your theme/plugin: <?php add_filter( 'wcs_view_subscription_actions', 'add_skip_action', 10, 3 ); public function subscription_skip_handler(){ global $post; //...