Price 0

This topic contains 6 reply and 3 voices, and was last updated by Sk 9 years, 4 months ago
Viewing 6 Posts - 1 through 6 (of 6 total)
Author Posts
December 23, 2014 at 4:48 pm 32877
Sk Hallo, when I leave blank the price field in the website I read GRATIS. How can I found this word? I would change with PRICE ON REQUEST. Thank you very much
December 23, 2014 at 5:55 pm 32882
towhid towhid

Hello Corrado,

I did not understand your question. Can you please send me a screenshot with elaborate more. I am here to help you.

Thank You 🙂

December 23, 2014 at 6:05 pm 32885
Corrado Corrado

Here the screenshot, I would to change Gratis with another phrase (like
Price on request).
Thank you

Il 23/12/2014 12:55, weDevs Team ha scritto:

Mirza Twhidul Imran wrote:

Hello Corrado,

I did not understand your question. Can you please send me a screenshot with
elaborate more. I am here to help you.

Thank You :)

December 23, 2014 at 6:18 pm 32887
towhid towhid

Hello Corrado,

Please allow me some time to reproduce this issue. Hope I will be back to you with a right solution.

Thank You 🙂

December 23, 2014 at 6:36 pm 32888
towhid towhid

Hello Corrado,

Please create a child theme and paste below code to functions.php file.

add_filter( 'woocommerce_free_price_html', 'dokan_free_price', 2, 10 );
function dokan_free_price ( $price, $this ) {
    $price = __( 'Price in request', 'woocommerce' );
    return $price;
}

Let me know the result.

Thank You 🙂

December 24, 2014 at 9:33 pm 32945
Corrado Corrado

Something is wrong.

Il 23/12/2014 13:36, weDevs Team ha scritto:

`add_filter( ‘woocommerce_free_price_html’, ‘dokan_free_price’, 2, 10 );
function dokan_free_price ( $price, $this ) {
$price = __( ‘Price in request’, ‘woocommerce’ );
return $price;
}`

December 26, 2014 at 2:54 am 32958
Sk Sk

Hello Corrado,
Please try the following code:
[php]
add_filter( ‘woocommerce_free_price_html’, ‘dokan_free_price’, 10, 2 );
function dokan_free_price ( $price, $this ) {
$price = __( ‘Price in request’, ‘woocommerce’ );
return $price;
}
[/php]

Thank you… 🙂

Viewing 6 Posts - 1 through 6 (of 6 total)