Cambiare test al bottone "per saperne di più"
/*
* replace read more buttons for out of stock items
**/
if (!function_exists('woocommerce_template_loop_add_to_cart')) {
function woocommerce_template_loop_add_to_cart() {
global $product;
if (!$product->is_in_stock()) {
echo '<a href="'.get_permalink().'" rel="nofollow" class="button product_type_simple">Ordina</a>';
}
else
{
woocommerce_get_template('loop/add-to-cart.php');
}
}
}