Comments 2Josh started the conversationDecember 11, 2024 at 2:17pmHi there,Example product: https://angliancompressors.com/product/atlas-copco-g2-air-compressor/We love how the price updates on the product page when additional products are added to the composite.However, my client would like the Basket page to display the original price next to the main product.Quick Video going over it.https://www.loom.com/share/053548c913b44d2da427ab658ff1e9ad?sid=08af3466-1b50-4514-b93a-dae8068e8f04Thank you so much, I've brought the pro version as a thank you. 1,281Dustin repliedDecember 13, 2024 at 4:04amHi Josh, Thanks for your purchase! Please add the custom code below. (How to add custom code? ↗): add_filter( 'wooco_cart_item_price', function ( $item_price, $price, $cart_item ) { if ( isset( $cart_item['wooco_ids'] ) ) { return $price; } return $item_price; }, 99, 3 ); add_filter( 'wooco_cart_item_subtotal', function ( $item_subtotal, $subtotal, $cart_item ) { if ( isset( $cart_item['wooco_ids'] ) ) { return $subtotal; } return $item_subtotal; }, 99, 3 ); Let me know if it works as you expected.Best regards,Dustin1 Like 2Josh repliedDecember 13, 2024 at 9:53amHi Dustin,That's perfect, thanks so much.1 Like Sign in to reply ...
Hi there,
Example product: https://angliancompressors.com/product/atlas-copco-g2-air-compressor/
We love how the price updates on the product page when additional products are added to the composite.
However, my client would like the Basket page to display the original price next to the main product.
Quick Video going over it.
https://www.loom.com/share/053548c913b44d2da427ab658ff1e9ad?sid=08af3466-1b50-4514-b93a-dae8068e8f04
Thank you so much, I've brought the pro version as a thank you.
Hi Josh,
Thanks for your purchase!
Please add the custom code below. (How to add custom code? ↗):
Let me know if it works as you expected.
Best regards,
Dustin
Hi Dustin,
That's perfect, thanks so much.