Andrew Munro / AffiliateWP
Forum Replies Created
-
Forum: Reviews
In reply to: [RewardsWP - Loyalty Points & Referral Program for WooCommerce] Great Plugin@rodlensh Would you be able to share your LiteSpeed cache settings? I’m in the in process of testing on a LiteSpeed server with cache turned on but so far haven’t been able to replicate the issue. Thanks.
Forum: Reviews
In reply to: [RewardsWP - Loyalty Points & Referral Program for WooCommerce] Great Plugin@rodlensh Thanks for your review, appreciate it.
We’ll take a look at the caching issue you mentioned and work on a solution.
Hey Joe!
Thanks for reaching out. Since AffiliateWP is a commercial plugin, we’re not able to provide support for it here on the ww.wp.xz.cn forums (per the forum guidelines).
Our support team can dig into your license status directly. Please open a ticket at https://affiliatewp.com/contact/ and they’ll get you sorted out.
Thanks for all your suggestions @momocamel, will take a look. Birthday Rewards is high on our list.
Thanks for the feedback @momocamel. We have released a new version to fix the currency issue you are seeing. Please let me know if that fixes it or not – I found a few more places where it may have affected you.
I 100% agree with your feedback. Customers need a better way to discover their points and one of the most natural ways is within the WooCommerce My Account area.
Thanks for your other suggestions, we’re also considering a notification/popup for the advocate after a successful referral so they know they received something (in case they missed the email) the next time they come back to the site. I would love to hear any other suggestions you have so feel free to open a new topic or paste them here 🙂
As mentioned in my last reply, here’s a code snippet that will add a “My Rewards” tab to the WooCommerce My Account page. When clicked, it will open up the rewards widget which is already loaded on the page. I understand you want a dedicated page within the My Account section but this should hopefully help with discoverability until then.
https://library.wpcode.com/snippet/ro8lvmr5/
You can also replace #rewardswp-home in the snippet above with:
#rewardswp-rewards – Opens the customer’s rewards sub-panel if they have any.#rewardswp-earn – Opens the customer’s “ways to earn” sub-panel.
#rewardswp-redeem – Opens the customer’s “ways to redeem” sub-panel.
Hope that helps!
Hey @momocamel
Thanks, we’ll work on a patch to fix the display issue.
RewardsWP doesn’t have a dedicated points page but it’s on our roadmap. For now, everything is shown through the customer-facing rewards widget. You can for example Add a “Rewards” navigation item to your site’s menu, or even inside the WooCommerce My Account page and link directly to the widget in an open state.
If the customer is logged in, they will see their points prominently displayed inside the widget like this: https://share.cleanshot.com/z9LY1Xm0
If you would like to do this, simply link to your site’s URL with the following appended: #rewardswp-home
Example: https://yoursite.com#rewardswp-home
Logged out members will see the welcome screen where they can sign in: https://share.cleanshot.com/7PNdBJ40
You can also use a query string to link to it from emails etc: Example: https://yoursite.com?rewardswp=home
If you’d like to add a new menu to the WooCommerce my account page to open the panel let me know and I can share a quick code snippet. We’ll likely be building something into the WooCommerce My Account page soon to display points and other information to the customer, without needing to open the rewards widget.
Hey @momocamel,
I’ve just released v1.0.3 which has this included. Let me know if you have any other suggestions, great feedback.
Hey @momocamel,
I wanted to share some progress with you. We’re going to update the “Make a purchase” action to something like the following, allowing you to define an earning rate with control over both the points and spent amount.
In this example it shows that members can earn 50 points for every ¥500 spent: https://share.cleanshot.com/54YnM2C4
Let me know if you have any feedback, thanks!
Forum: Plugins
In reply to: [AffiliateWP - Affiliate Area Tabs] Issue with WooCommerce my-account loginHey Renaat,
Can you check the settings for Affiliate Area Tabs? It sounds like the WooCommerce My Account page has been added as a tab. If so, that’s why the redirect is occurring. Pages assigned as tabs are meant to be private to affiliates only so any non user going to that page will be redirected to the affiliate area.
Let me know if that helps, thanks
Thanks @roach7
Forum: Plugins
In reply to: [Affiliate Area Shortcodes by AffiliateWP] Shortcode for only affiliate urlAffiliateWP includes a
[affiliate_referral_url]shortcode for doing this: https://docs.affiliatewp.com/article/64-affiliatereferralurlHope that helps!
Forum: Developing with WordPress
In reply to: Adding postmeta to wp-json custom post typeThanks @timothyblynjacobs! My custom post type also didn’t have support for
custom-fields. The post meta is now being saved correctly. Glad I found this discussion 🙂Forum: Plugins
In reply to: [Easy Digital Downloads - Blocks] Disable downloads block styleHappy to help!
Forum: Plugins
In reply to: [Easy Digital Downloads - Blocks] Disable downloads block styleYes, you can use the
wp_dequeue_style()function to remove the stylesheeet from EDD Blocks:function edd_blocks_custom_dequeue_styles() { wp_dequeue_style( 'edd-blocks' ); } add_action( 'wp_enqueue_scripts', 'edd_blocks_custom_dequeue_styles', 501 );- This reply was modified 7 years, 2 months ago by Andrew Munro / AffiliateWP.
You’re welcome, great to hear! 🙂