Hi,
I installed woocommerce plugin to my enfold.When I add single product Woocommerce genarate first tab automatically and Product description, text areas etc. in there. I ‘ve added avia contact form code to second tab but contact form not displayed. What is my problem, help me please ?
Thanks
Hoşgeldiniz Yiğt Bey, sizi bekliyordum bende ;)
Merhabalar!
Lutfen assagidaki kodu Functions.php dosyasina ekleyin
add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {
$tabs['test_tab'] = array(
'title' => __( 'New Product Tab', 'woocommerce' ),
'priority' => 50,
'callback' => 'woo_new_product_tab_content'
);
return $tabs;
}
function woo_new_product_tab_content() {
echo do_shortcode( "SHORTCODE BURAYA GELECEK");
}
Cheers!
Yigit
Yiğt Bey,
Belirttiğiniz kodu eklediğimde çalışıyor teşekkürler. Fakat bu şekilde olduğunda her bir ürün tabına ayrı bir form ekliyemeyeceğim. Bunu dinamik hale getirme imkanımız var mı? Çünkü her bir ürün için ayrı form oluşturmam gerekiyor.
Teşekkürler.
Merhabalar,
Bu eklentiyi kullanmayi dener misiniz – https://wordpress.org/plugins/woocommerce-custom-tabs/?
Cheers!
Yigit