welaunchio
Forum Replies Created
-
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Bank Transfers SupportDo you have any plan for this or are you open for custom work?
Forum: Plugins
In reply to: [Polylang] WPML Keys XML no longer workinghello?
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] German TranslationForum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] German TranslationDo you have any news when you will add the translations? Until now I still have to add all German translations manually which is quite time consuming.
Forum: Plugins
In reply to: [Contact Form 7] PHP NoticesThis is our development site (we are an agency selling about 20 woo plugins).
Forum: Plugins
In reply to: [Contact Form 7] PHP NoticesWe use Latest versions.
I submitted a ticket now. Ticket text:
Hello,
we refer to this thread: https://www.ads-software.com/support/topic/reward-points-plugin/
We are the developers of a reward points plugin with over 1000 installs and want to add support for your plugin.
We need the wholesale price to calculate points, but NONE of the code, that was provided in the WP thread worked. Please send us a WORKING code to get the correct wholesale price.
Image below shows: empty string (no price returned): https://imgur.com/a/A88oFZt
Code used:
add_action('woocommerce_after_shop_loop_item', function() { global $product, $wc_wholesale_prices; $user_wholesale_role = $wc_wholesale_prices->wwp_wholesale_roles->getUserWholesaleRole(); $wholesale_price = WWP_Wholesale_Prices::get_product_wholesale_price_on_shop($product->get_id(), $user_wholesale_role); echo 'Wholesale price: ' . var_dump($wholesale_price); });
Sorry but with this code I get an empty string: https://imgur.com/a/LUaFqVj
Can you contact us at [email protected] and we send you admin / FTP data? Or our plugin?
We did not buy your plugin, but want to add support for our plugin.
Hi there,
I disabled all plugins, used default theme and even just put your code into the functions.php (not our plugin), but it still not works: https://imgur.com/a/XIrglHu
On single products a fatal error is also triggered now.
Can you contact us via email to [email protected] then I can send you credentials? We would really like to add support for your wholesale plugin to our reward points plugin.
Thanks for your request but I get errors:
- Fatal error: Class WWPP_Wholesale_Prices not found (maybe wwpp -> wwp)
- I tried WWP_Wholesale_Prices::get_product_wholesale_sale_price but then I get “method not found error”
- Commented it out and I get an empty array, no wholesale prices: https://imgur.com/a/AItcs0t
- I need the 474 price
We use this hook: woocommerce_after_shop_loop_item
Hi there,
we are the authors of the plugin: https://codecanyon.net/item/woocommerce-reward-points/29123909 (sold over 800 times).
We use standard function: wc_get_price_to_display to get the price for point calculation. However your plugin does not seem to hook into any of these functions or woocommerce_product_get_price.
You just use “get_price_html” and add a text behind the product with the wholesale price. Is there any way to get your wholesale price with a hook or something? Or do you plan to follow WC default hooks?