2016-01-23 61 views
0

我正在使用WooCommerce,並且試圖在MyAccount頁面中的訂閱表下添加一個按鈕。在我的帳戶頁面中的WooCommerce訂閱表下添加一個按鈕

我試過這個代碼,但不工作:

add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button'); 

function add_switch_button() {  
    echo "something;    
} 

你能幫幫我嗎?

+0

您正在使用過時的模板? – helgatheviking

+0

我使用的視圖預訂由WooCommerce Subscription插件的最新版本提供的模板 –

回答

0

剛剛錯過了在你的代碼收盤報價東西

add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button'); 

function add_switch_button() {  
    echo "something";    
} 

與WooCommerce和WooCommerce訂閱當前版本的測試後」。

相關問題