Title: function.php
Last modified: September 1, 2016

---

# function.php

 *  [silviacc](https://wordpress.org/support/users/silviacc/)
 * (@silviacc)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/functionphp-15/)
 * Hi
 * i updated my woocommerce to 2.6.2 to 2.6.4
 * and some functions in my function.php fils seems not working anymore
 * this that display SOLD instead of out of stok on my theme
 * function custom_get_availability( $availability, $_product ) {
    //change text“
   In Stock’ to ‘SPECIAL ORDER’ if ( $_product->is_in_stock() ) $availability[‘availability’]
   = __(‘AVAILABLE’, ‘woocommerce’);
 * //change text “Out of Stock’ to ‘SOLD OUT’
    if ( !$_product->is_in_stock() ) 
   $availability[‘availability’] = __(‘SOLD’, ‘woocommerce’); return $availability;
 * is someone have an idea why this doesn’t work anymore?
 * Thanks
 * [https://wordpress.org/plugins/woocommerce/](https://wordpress.org/plugins/woocommerce/)

Viewing 1 replies (of 1 total)

 *  [Caleb Burks](https://wordpress.org/support/users/icaleb/)
 * (@icaleb)
 * Automattic Happiness Engineer
 * [9 years, 9 months ago](https://wordpress.org/support/topic/functionphp-15/#post-7706972)
 * Doesn’t look like you posted the full code here. Also, please use the `code` 
   button to use back ticks before and after your code so it is formatted correctly.
 * You should just be able to translate the text string. You can use a plugin like
   this to translate it: [https://wordpress.org/plugins/loco-translate/](https://wordpress.org/plugins/loco-translate/),
   or write a custom snippet to change the string like this: [http://speakinginbytes.com/2013/10/gettext-filter-wordpress/](http://speakinginbytes.com/2013/10/gettext-filter-wordpress/)

Viewing 1 replies (of 1 total)

The topic ‘function.php’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

## Tags

 * [functions](https://wordpress.org/support/topic-tag/functions/)

 * 1 reply
 * 2 participants
 * Last reply from: [Caleb Burks](https://wordpress.org/support/users/icaleb/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/functionphp-15/#post-7706972)
 * Status: not resolved