-
-
Save mikejolley/1597957 to your computer and use it in GitHub Desktop.
/** | |
* This code should be added to functions.php of your theme | |
**/ | |
add_filter('woocommerce_empty_price_html', 'custom_call_for_price'); | |
function custom_call_for_price() { | |
return 'Call for price'; | |
} |
works for me. You need to put the code in woocommerce-hooks.php with all of the other hooks. I personally put the hook after the function. Bad past experiences with wordpress has forced this habit.
Thanks, works like a charm.
you can solve it than do product variations in the "From" price into the "Call for price", but actually place the price?
Works! Really Thanks. Works with function.php in themeforest The Retailer themes.
Does this work for WooCommerce 2.0.19? I have a test site and it doesn't seem to work.
Worked for me on WP 3.9.1 and WooComm 2.1.8. I added the code above to line 17 of /woocommerce/includes/wc-template-hooks.php.
this works for me but it wont show on the front-end of the site. When viewing products in the list I can see the price says Call for Price. Any suggestions as to what might be preventing it from showing?
Hi.
I have a question.
So, users can write something like "contact me directly" or "call for price" directly into the price field.
Here is what I am trying to achieve:
When an user puts non-numeric character in price field, then regardless of what they have written, I want to show "Contact the seller" on the product page.
Would you happen to know how I can do this?
Thank you
dnordyke thanx a lot!!! I was searching how to do that about 2 hours, and after changing this file it really works!
Thank you! Works perfectly with Enfold v3.5.4 & WooCommerce v2.5.5.
um but they can still add it to cart... and buy it for free...
I am using the code for showing SOLD products. How could I create "Request a price" when setting price to 0?
This works great except for products with variations.
How can we make this work for the variants as well?
Thanks!! It worked for me, WC 3.4.4, 'Request for price' is more professional but anyway, thank you!
Good! thank, work for me
Good men! thanks
Hi,
can you advice how to create the same if you use WPML and need to have the text translated in 3 languages?
Works! Really Thanks/
For variable product use woocommerce_variable_empty_price_html //woocommerce/includes/class-wc-product-variable.php
for grouped products use woocommerce_grouped_empty_price_html //woocommerce/includes/class-wc-product-grouped.php
Thanks Mike for your code. It really works!!!
For variable product use woocommerce_variable_empty_price_html.
for variation product use woocommerce_variation_empty_price_html
I don't think that's clear. There is no variable vs variation product.
To clarify, it's either a variable product or a variation of a product (a variation is not a product).
Works great, thank you!
Reverts to 0.00 when currency changed.
Is there a fix for this?
Works for Nitro theme
hi Micheal, your code works for me. Thank you. Can you help me if i want to add "href=tel:xxxxxxx" option on Call for price? how can i add it in this code...? will appreciate your help
I've just added this code to functions.php of my theme but it doesn't work. Please test it again and help me. Thank you so much !