开发者 | raviraiya |
---|---|
更新时间 | 2013年11月18日 18:13 |
捐献地址: | 去捐款 |
PHP版本: | 3.3 及以上 |
WordPress版本: | 3.6.1 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
This free version does not have that functionality, but now you can with the paid Woocommerce Product Custom Tab Pro
This free version does not have that functionality, but now you can with the paid Woocommerce Product Custom Tab Pro
Yes, the upgrade process form the free to the premium Tab Manager plugin is painless and easy.
The tab heading is shown before the tab content and is the same string as the tab title. An easy way to hide this is to add the following to the bottom of your theme's functions.php:
add_filter( 'woocommerce_custom_product_tabs_lite_heading', 'hide_custom_product_tabs_lite_tab_heading' ); function hide_custom_product_tabs_lite_tab_heading( $heading ) { return ''; }