• 26-05-2024, 21:55:22
    #1
    Merhabalar,

    Tek bir youtube videosu ekleyip tüm ürünlerde nasıl gösterebilirim?
  • 26-05-2024, 22:09:54
    #2
    Woocommerce mi?
  • 26-05-2024, 22:12:40
    #3
    evet
  • 26-05-2024, 22:13:20
    #4
    aksoy adlı üyeden alıntı: mesajı görüntüle
    Woocommerce mi?
    evet
  • 26-05-2024, 22:53:01
    #5
    add_action('woocommerce_after_single_product_summary', 'add_youtube_video_to_all_products', 20);
    
    function add_youtube_video_to_all_products() {
        $youtube_video_url = 'https://www.youtube.com/embed/UDVtMYqUAyw?si=hEh8FSn46NKxdfHW';
    
    
        $youtube_video_iframe = '<iframe width="560" height="315" src="' . $youtube_video_url . '" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
    
        echo '<div class="youtube">' . $youtube_video_iframe . '</div>';
    }
  • 27-05-2024, 06:55:28
    #6
    aksoy adlı üyeden alıntı: mesajı görüntüle
    add_action('woocommerce_after_single_product_summary', 'add_youtube_video_to_all_products', 20);
    
    function add_youtube_video_to_all_products() {
        $youtube_video_url = 'https://www.youtube.com/embed/UDVtMYqUAyw?si=hEh8FSn46NKxdfHW';
    
    
        $youtube_video_iframe = '<iframe width="560" height="315" src="' . $youtube_video_url . '" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
    
        echo '<div class="youtube">' . $youtube_video_iframe . '</div>';
    }
    Çok teşekkürler.