Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #402611

    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

    #402638

    Hoşgeldiniz Yiğt Bey, sizi bekliyordum bende ;)

    #402657

    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

    #402672

    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.

    #402702

    Merhabalar,

    Bu eklentiyi kullanmayi dener misiniz – https://wordpress.org/plugins/woocommerce-custom-tabs/?

    Cheers!
    Yigit

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.