如何更改woocommerce(v2.4)中的「添加到購物車」按鈕文本/鏈接?woocommerce定製「添加到購物車」文本/鏈接
我試圖將此代碼添加到我的functions.php,但doesn't似乎工作:
add_action('woocommerce_after_shop_loop_item','replace_add_to_cart');
function replace_add_to_cart() {
global $product;
$link = $product->get_permalink();
$text = _('Learn More', 'woocommerce');
echo '<a href="'.$link.'" class="button addtocartbutton">Learn more</a>';
}
相同的答案,如下 - >不再工作 –
如果你搜索一下,這裏有2個鏈接,它們是來自WooThemes的官方代碼片段** WooCommerce的製造商:[**] WooThemes - 更改添加到購物車按鈕文本(所有解決方案)**](https:// docs.woothemes.com/document/change-add-to-cart-button-text/)和[WooThemes - 在商店頁面中更改「添加到購物車」按鈕](https://support.woothemes.com/hc/en -us/articles/203006565-Change-Add-to-Cart-button-to-Go-to-Product-Shop-Page) – LoicTheAztec