woocommerce içerikleri üye olmadan görememe eklentisi
4
●73
- 28-10-2020, 23:39:46Google görmesin .Google ile bir işimiz yok .raskors adlı üyeden alıntı: mesajı görüntüle
- 29-10-2020, 02:07:21Bu kodu temanızın ana dizininde bulunan function.php ye eklerseniz işinizi görürsünüz muhtemelen.
add_filter( 'woocommerce_product_tabs', 'customize_product_tabs', 100 ); function customize_product_tabs( $tabs ) { if ( ! is_user_logged_in() ) { unset( $tabs['description'] ); // remove the description tab } return $tabs; }