function custom_woocommerce_loop_add_to_cart_link( $html, $product ) {
    $instagram_link = "https://www.instagram.com/your_username/"; // Instagram hesabınız
    
    $button_text = __("Instagram'da Görüntüle", "domain"); // Butonun üzerindeki yazı
    
    return '<a href="' . $instagram_link . '" class="button" target="_blank">' . $button_text . '</a>';
}

add_filter( 'woocommerce_loop_add_to_cart_link', 'custom_woocommerce_loop_add_to_cart_link', 10, 2 );
functions.php dosyasına bu kodu ekleyin.