astralex
Forum Replies Created
-
Thank you for your help. I followed your instructions and made the quiz links private.
Hi, I already had this issue resolved by the Fox support. It is working now with the integration enabled.
Thank you.
No, I use fixed prices: https://prnt.sc/KWuGKgWEUyWS
I’m using that plugin to display wholesale prices (tiers). While your plugin does change the currency sign for the displayed tiers, it doesn’t convert the price itself. Here is example of a product with tiers:
https://tropicsathome.com/product/heliconia-chartacea-sexy-pink/It’s a production site, so I don’t have your plugin enabled there, but I have a staging setup to which I could give you access.
Hi again!
I’ve attempted to adjust the wholesale prices using various methods based on the documentation and suggestions from you, but I am facing persistent issues with the wholesale prices not updating.Here is a brief overview of what I have tried:
- Directly updating the meta values for the wholesale pricing rules in the database.
- Using methods from the
\TierPricingTable\Addons\RoleBasedPricing\RoleBasedPricingRuleclass as suggested in your previous communications.
Despite these efforts, the updates are not reflecting on the WooCommerce front end. Could you provide guidance on the correct approach or function calls to update wholesale prices effectively? Additionally, if there are any specific hooks or conditions that must be met for these updates to take effect, that information would be greatly helpful.
Here’s a snippet of the code I’m currently using to update the prices:
function update_wholesale_prices_directly($product_id, $percentage) { $role = 'wholesale'; $increase_factor = 1 + $percentage / 100; $fixed_price_rules = get_post_meta($product_id, "_{$role}_fixed_price_rules", true); if ($fixed_price_rules && is_array($fixed_price_rules)) { foreach ($fixed_price_rules as $quantity => $price) { $fixed_price_rules[$quantity] = round($price * $increase_factor, 2); } update_post_meta($product_id, "_{$role}_fixed_price_rules", $fixed_price_rules); } $percentage_price_rules = get_post_meta($product_id, "_{$role}_percentage_price_rules", true); if ($percentage_price_rules && is_array($percentage_price_rules)) { foreach ($percentage_price_rules as $quantity => $discount) { $percentage_price_rules[$quantity] = max(0, $discount * $increase_factor); } update_post_meta($product_id, "_{$role}_percentage_price_rules", $percentage_price_rules); } }Any insights or examples you could provide would be greatly appreciated.
Thank you for your support.
I installed it by instructions from Astra Pro theme to get the dynamic shopping cart icon. You can see the icon on the top menu, but it doesn’t show when there are products added to the cart. Or does it suppose to work only with downloadable products?
Forum: Plugins
In reply to: [Tiered Pricing Table for WooCommerce] Tiered prices not showing on check-outYou were right again! I narrowed it down to this plugin:
https://wordpress.org/plugins/woo-product-country-base-restrictions/I have some products, which are not eligable for import to US and using this plugin to restrict it for US customers.
Maybe it’s possible to eliminate this clush?
Forum: Plugins
In reply to: [Tiered Pricing Table for WooCommerce] Wrong currency convertionAh, indeed! I had that. Removed and it’s working just fine.
Thank you!
Could I please ask you to take a look at another still unresolved problem I had for half a year now: https://wordpress.org/support/topic/tiered-prices-not-showing-on-check-out/
It’s importent one for wholesale customers.
Here is another print screen illustrating the problem: https://prnt.sc/nNf3fBI4c5jx
Thank you again!Forum: Plugins
In reply to: [Tiered Pricing Table for WooCommerce] Wrong currency convertionBtw, I had to do a rollback to 2.8.0, so it’s working correct on the site.
Yes, thank you!
Oh, yes, I forgot about the currency switcher! Thank you!
Will definitely use your plugin.Forum: Plugins
In reply to: [Tiered Pricing Table for WooCommerce] Tiered prices not showing on check-outHi, could you please take a look at this issue? You can try it for your self:
Add 10 pieces of this product: https://tropicsathome.com/product/hoya-lacunosa-silver-leaves/?attribute_pa_cutting-large=cutting
The tiered price for 10 pieces should be 60$. If you check the checkout it will list those 10 pieces as 114$ (price of 1 piece x 10). The subtotal however will be calculated correct at 60$.
This can’t be just mine problem and this is a big deal for wholesale customers to be able to see the correct prices.Hi,
It’s https://tropicsathome.comThank you!
I’m sorry, but these kind of advises are useless for a production site with tens of must have plugins and the sites’s core functionality depending on the theme.
Will rather desable the Accordion.Diego, thank you for your awesome support for your awesome currency switch plugin! Reverted PayPal gateway plugin from 1.6.5 to 1.6.3 and it sure works again. Hopefully it will also solve the failed orders problems I’ve been having lately.