php Woocommerce选项卡/我的帐户functions.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Woocommerce选项卡/我的帐户functions.php相关的知识,希望对你有一定的参考价值。

#-----------------------------------------------------------------#
# Woocommerce
#-----------------------------------------------------------------#
add_filter( 'woocommerce_account_menu_items', 'ag_remove_downloads', 999 );
 
function ag_remove_downloads( $items ) {
	unset($items['downloads']);
return $items;
}

//Remove WooCommerce Tabs - this code removes all 3 tabs - to be more specific just remove actual unset lines
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
	unset( $tabs['description'] );      	// Remove the description tab
	unset( $tabs['reviews'] ); 			// Remove the reviews tab
	unset( $tabs['additional_information'] );  	// Remove the additional information tab
 return $tabs;
}

/** Remove short description if product tabs are not displayed */
function dot_reorder_product_page() {
    if ( get_option('woocommerce_product_tabs') == false ) {
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    }
}
add_action( 'woocommerce_before_main_content', 'dot_reorder_product_page' );

以上是关于php Woocommerce选项卡/我的帐户functions.php的主要内容,如果未能解决你的问题,请参考以下文章

在 WooCommerce 中检查挂钩功能破坏网站上的用户角色

php 更改woocommerce选项卡名称

php [WooCommerce Core]自定义选项卡

php [WooCommerce Core]自定义选项卡

php WooCommerce |在摘要下移动产品选项卡

php WooCommerce |在摘要下移动产品选项卡