Home › Forums › WoodMart support forum › Problem with price Problem with price This topic has 5 replies, 2 voices, and was last updated 1 month ago by Aizaz Imtiaz Awan. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts November 1, 2024 at 11:30 pm #609358 dars222Participant Hi, I have a problem with the price. I have 3 attributes in all products. But before entering the product I only want one main attribute with a higest price and an option to add to cart. Its is possible change in this theme? This topic was modified 1 month ago by dars222. Attachments:You must be logged in to view attached files. November 2, 2024 at 11:17 am #609404 Aizaz Imtiaz AwanKeymaster Hello, Navigate to Theme Settings > Shop > variable Product Enable the option “Hide Price”. Best Regards November 2, 2024 at 12:37 pm #609421 dars222Participant Not working Sir, after “Hide to price” I have the smallest price and button the option. I want the highest price and button add to basket Attachments:You must be logged in to view attached files. November 2, 2024 at 1:34 pm #609428 Aizaz Imtiaz AwanKeymaster Hello, Add the code below in the functions.php file in your child theme: add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price( $price, $product ) { // Get the highest priced variation $highest_price = $product->get_variation_price('max'); if ($highest_price > 0) { // Display the highest price $price = wc_price($highest_price); } return $price; } Best Regards November 2, 2024 at 2:00 pm #609431 dars222Participant Thank you, price is okay but still button is not ok. At now is : select options I want: add to basket November 4, 2024 at 9:33 am #609604 Aizaz Imtiaz AwanKeymaster Hello, The “Select Options” button is displayed by default for variable products on the shop page. If you want to change the text, You can use the loco translate plugin. For more information please read the theme documentation here: https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/ Best Regards Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to create new topics. Login / Register