Skip to content

Fjerne faner fra produkter i WooCommerce

For at fjerne fanebladene på produkter i WooCommerce kan du tilføje følgende til functions.php

[code] add_filter( ‘woocommerce_product_tabs’, ‘zebs_remove_product_tabs’, 98 );

function zebs_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;
}
[/code]

This Post Has 0 Comments

Skriv et svar

Back To Top