• Resolved falconmick

    (@falconmick)


    I am using a custom caching framework that uses hooks to de-validate the cache, are there any hooks I can subscribe to for this plugin

Viewing 2 replies - 1 through 2 (of 2 total)
  • Same request as falconmick, I am using two varnish servers

    • This reply was modified 6 years, 9 months ago by brutoblo99.
    Plugin Author Maya

    (@tdgu)

    You can use the action PTO/order_update_complete which trigger when the sort order save completed, something like this:

        add_action('PTO/order_update_complete', 'PTO_order_update_complete');
        function PTO_order_update_complete()
            {
                //your custom code after sort order save completed    
                
            }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reorder Hook’ is closed to new replies.