Conversation
supportHello, I hope you can help. I’d like to set the minimum price but don’t show it or replace it with a text placeholder It’s similar to https://wordpress.org/support/topic/showing-price/?view=all#topic-14911735-replies Thanks, Dik Hoogmoed The page I need help with: [ log in to see the link]
Hello, With the current plugin functionality, It’s not possible to hide the minimum price. The minimum price that is set will be visible on the shop and product page. However, We can help you with custom code. If you are interested please reach out to us . Thanks
Hi Dik, I figured this out for my website and hopefully I can help you. Go to line 157 of the plugin file under includes elex-wfp-product-flexible-price.php Delete the following to stop the minimum price from showing: value="<?php echo strlen(wp_kses_post( $product_min_price ) ) === 0 ? 0 : wp_kses_post( $product_min_price ); ?>" Then to add a placeholder text, put: placeholder=” insert text ” before the input closing tag like this – <input placeholder=” insert text ” /> Hope that helped! This reply was modified 4 years, 3 months ago by gentlelivingshop . This reply was modified 4 years, 3 months ago by gentlelivingshop .
Hello, With the current plugin functionality, It’s not possible to hide the minimum price. The minimum price that is set will be visible on the shop and product page. However, We can help you with custom code. If you are interested please reach out to us . Thanks
Hi Dik, I figured this out for my website and hopefully I can help you. Go to line 157 of the plugin file under includes elex-wfp-product-flexible-price.php Delete the following to stop the minimum price from showing: value="<?php echo strlen(wp_kses_post( $product_min_price ) ) === 0 ? 0 : wp_kses_post( $product_min_price ); ?>" Then to add a placeholder text, put: placeholder=” insert text ” before the input closing tag like this – <input placeholder=” insert text ” /> Hope that helped! This reply was modified 4 years, 3 months ago by gentlelivingshop . This reply was modified 4 years, 3 months ago by gentlelivingshop .