You are here: Home
Support site for Tips and Tricks HQ premium products
Hi,
Yes, I did put request a custom work order but it seems the customer support misunderstood my ticket and did not respond to my request for a custom work order quote.
Hi,
I’m also interested in an integration with Learnpress and WP emember. Is there one available?
I think i know what my issue is. The products i am selling take a reoccurring payment and looking in the code i think that the estore_product_database_updated_after_payment hook only gets run for non reoccurring payments?
If so i think i need to hook into this hook (eStore_paypal_recurring_payment_received)?
I basically took the boiler plate plugin http://tommcfarlin.github.io/WordPress-Plugin-Boilerplate/ as a base and then under public hooks registered one for estore_product_database_updated_after_payment.
$this->loader->add_action( ‘eStore_product_database_updated_after_payment’, $plugin_public, ‘custom_update_user’,10,2);