Код: Выделить всё
add_filter( 'woocommerce_single_product_image_thumbnail_html', 'replace_product_image_with_video', 10, 2 );
function replace_product_image_with_video( $html, $attachment_id ) {
global $product;
$productID = $product->get_id(); // get current product ID
// replace 11 to your specific product id
if( $productID == 11 ) {
$html = '
https://www.youtube.com/embed/U5sLA74nAt0
';
}
return $html;
Я подозреваю, что это происходит потому, что используемая мною по умолчанию тема Wordpress содержит этот код в /templates/single-product/product-thumbnails.php< /p>
Код: Выделить всё
echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', wc_get_gallery_image_html( $attachment_id ), $attachment_id );
Подробнее здесь: https://stackoverflow.com/questions/791 ... oduct-page