dhrf
Forum Replies Created
-
Forum: Plugins
In reply to: [Elementor Custom Skin] Pagination not working on archive pagesI am also having the same problem.
Forum: Plugins
In reply to: [Permalink Manager Lite] Permalink Manager Lite + ElementorI had the same issue with the pro version but the most recent update fixed it.
@brozra No problem, I appreciate the input. PPOM was actually working fine with dynamic pricing before we added product addons. It seems to confuse those addons with it’s own and is calculating a second time, why I was hoping I could simply disable the calculations. I can add color swatches through product addons also, I just prefer PPOM for swatches.
@brozra Thanks for the reply, I tried that but it didn’t work.
I don’t need to hide the PPOM table. In my cart the discount is being calculated twice, which results in the price being incorrect. I don’t change the price of any items using PPOM so there is no reason it should be changing the prices. Is there any way I can disable this?
Thanks.
Hi @xootix
Thanks for your quick reply.
That’s strange input fields are being pulled in for my suggested products when they shouldn’t be. That explains why they weren’t functioning correctly as they shouldn’t be there. I went ahead and hid them with css.
I was actually experiencing that FF bug also. Thank you for linking the solution for me.
Hi @xootix
Thanks for your quick reply.
Unfortunately that code doesn’t seem to work as $args[‘suggested_products’] doesn’t seem to be empty. When cross-sells are empty other products are being added to suggested products instead.
function xoo_cu_wsc_sp_filter($args){ $suggested_products = WC()->cart->get_cross_sells(); if(empty($suggested_products)){ $args['suggested_products'] = array(0); } return $args; } add_filter('xoo_wsc_suggested_product_args','xoo_cu_wsc_sp_filter');
This seems to work, not sure if it is the best way to handle it though?