Title: storestartup's Replies | WordPress.org

---

# storestartup

  [  ](https://wordpress.org/support/users/storestartup/)

 *   [Profile](https://wordpress.org/support/users/storestartup/)
 *   [Topics Started](https://wordpress.org/support/users/storestartup/topics/)
 *   [Replies Created](https://wordpress.org/support/users/storestartup/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/storestartup/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/storestartup/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/storestartup/engagements/)
 *   [Favorites](https://wordpress.org/support/users/storestartup/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Partial.ly Payment Plans] If user returns to site, deciding against partial.ly order is cancelled](https://wordpress.org/support/topic/if-user-returns-to-site-deciding-against-partial-ly-order-is-cancelled/)
 *  Plugin Author [storestartup](https://wordpress.org/support/users/storestartup/)
 * (@storestartup)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/if-user-returns-to-site-deciding-against-partial-ly-order-is-cancelled/#post-11326097)
 * It is possible to change the return URL. You can hook into the _partially\_gateway\
   _settings_ filter and override the _payment\_plan.meta.checkout\_cancel\_url_
   property of the array. Here’s an example of how you could do that by adding a
   function to your theme’s functions.php file
 *     ```
       function custom_partially_cancel_url($config) {
       	$config['payment_plan']['meta']['checkout_cancel_url'] = 'http://example.com/url';
       	return $config;
       }
       add_filter('partially_gateway_settings', 'custom_partially_cancel_url');
       ```
   

Viewing 1 replies (of 1 total)