bluvertigo
8/12/2015 - 5:21 AM

Cambiare test al bottone "per saperne di più"

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');
}
}
}