Abolaji Mustapha
Forum Replies Created
-
Forum: Reviews
In reply to: [Phone Validator for WooCommerce] Good solution for Tel validationGreat, I’ll be anticipating dearly!
Hi Team,
I am very relieved and grateful for this quick response on the plugin update issue.
I hope in the future you avoid such troubles with wp.org and svn repo, as this experience starts a milestone of me preaching an indispensable plugin in Power Pack for Elementor with such a high quality support team.
Once again- thank you, and just as promised, the 1 star rating would be changed immediately to a much deserved 5 star for the plugin. Stay blessed and safe!
Kind Regards,
Abolaji.Forum: Plugins
In reply to: [Affiliates Manager] Limit Referral Commission to first orderif you’re using woo-commerce as your e-Commerce and order publishing solution. then initiate this hook below:
function on_purchase( $order_id ) { //the code } add_action( 'woocommerce_order_status_completed', 'mojo_on_purchase' );add this code above to your theme’s function file
From my study of the functionality of the plugin, i discovered that wp affiliate manager uses cookie tracking to automate pay processes. so if cookie does not exist, no commission is awarded. therefore we’re gonna add a cookie delete piece of code to avoid recurring commission every of the order by the user(make sure this is applied to a registered user). In the on_purchase function add the following line to delete cookie after first time purchase:
setcookie("wpam_id", "", time()-3600);That is it. you can add conditionals before executing the line of code above.
So what does the plugin publishers think about this?Forum: Plugins
In reply to: [Affiliates Manager] Limit Referral Commission to first orderYes i can and i will do that right away
Forum: Plugins
In reply to: [Affiliates Manager] Limit Referral Commission to first orderHello, I’ve found a solution which is simply to automate a wpam tracking cookie delete sequence just immediately after purchase by buyer. Since i’m using woo commerce all i need to do is to initiate the after purchase hook upon every referred user first purchase in order to delete wpam tracking cookie. Thank you for the development of this plugin. i rate it 5 star.
Forum: Plugins
In reply to: [Affiliates Manager] Limit Referral Commission to first orderHow about with the track commission via plugin hook. i think something can be done. Please help.