403Webshell
Server IP : 172.67.75.225  /  Your IP : 216.73.216.185
Web Server : nginx/1.27.1
System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User : vinodai ( 3134)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /storage/v1396/wwwindicidolscom/public_html/wp-content/plugins/video-wc-gallery/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /storage/v1396/wwwindicidolscom/public_html/wp-content/plugins/video-wc-gallery/functions/do.php
<?php
/**
 * Operations of the plugin are included here.
 *
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;

$option = get_option('vwg_settings_group');

/**
 * Enqueue CSS and JS
 *
 * @since 1.38
 */
function vwg_enqueue_scripts( $hook ) {

    if ( is_product() ) {
        // CSS
        wp_enqueue_style('vwg_fontawesome', VWG_VIDEO_WOO_GALLERY_URL . 'includes/fontawesome_v6-6-0/css/all.css', '', VWG_VERSION_NUM);
        // Enqueue Video.js CSS
        wp_enqueue_style('videojs-css', VWG_VIDEO_WOO_GALLERY_URL . 'includes/video-js/video-js.css', '', VWG_VERSION_NUM);

        // Enqueue Flatsome theme specific styles
        if (vwg_active_theme_checker() === 'Flatsome') {
            wp_enqueue_style('vwg-flatsome-gallery', VWG_VIDEO_WOO_GALLERY_URL . 'woocommerce-overwrite/assets/css/flatsome-gallery.css', '', VWG_VERSION_NUM);
        }

        // JS
        // Enqueue Video.js JavaScript
        wp_enqueue_script('videojs', VWG_VIDEO_WOO_GALLERY_URL . 'includes/video-js/video-js.min.js', array('jquery'), VWG_VERSION_NUM, true);

    }

}
add_action( 'wp_enqueue_scripts', 'vwg_enqueue_scripts' );

/**
 * Create video tab in Woocommerce product
 *
 * @since 2.0
 */
function vwg_add_custom_product_tab( $product_data_tabs ) {
    $product_data_tabs['vwg_video_tab'] = array(
        'label' => apply_filters('vwg_modify_strings', __('Video Gallery for WooCommerce', 'video-wc-gallery')),
        'target' => 'vwg_video_tab_content',
        'class' => array( 'show_if_simple', 'show_if_variable' ),
    );
    return $product_data_tabs;
}
add_filter( 'woocommerce_product_data_tabs', 'vwg_add_custom_product_tab', 10, 1 );

/**
 * Add the tab content
 *
 * @since 2.0
 */
function vwg_add_custom_product_tab_content() {
    global $post;
    ?>
    <div id='vwg_video_tab_content' class='panel woocommerce_options_panel'>
        <?php
        $video_url = get_post_meta( $post->ID, 'vwg_video_url', true );
        ?>
        <p class="form-field vwg-add-video-button-container">
            <label for="add_video_button"><?php echo esc_html__('Add video from' , 'video-wc-gallery') ?></label>
            <button id="add_video_button" type="button" class="button">
                <i class="fas fa-plus-circle"></i> <?php echo esc_html__('WP Media' , 'video-wc-gallery') ?>
            </button>
            <span class="vwg-button-separator"><?php echo esc_html__('- or -' , 'video-wc-gallery') ?></span>
            <button id="add_youtube_button" type="button" class="button vwg-youtube-btn">
                <i class="fab fa-youtube"></i> <?php echo esc_html__('YouTube Video' , 'video-wc-gallery') ?>
                <?php if (!vwg_is_pro_addon()): ?>
                    <span class="pro-badge">PRO</span>
                <?php endif; ?>
            </button>
        </p>

        <!-- YouTube URL input field (shown only in PRO version) -->
        <?php if (vwg_is_pro_addon()): ?>
        <div id="youtube_url_container" class="vwg-youtube-input-container" style="display: none;">
            <input type="url" id="youtube_url_input" placeholder="<?php echo esc_attr__('Enter YouTube URL...' , 'video-wc-gallery') ?>" class="vwg-youtube-input" />
            <button id="confirm_youtube_button" type="button" class="button button-primary">
                <?php echo esc_html__('Add Video' , 'video-wc-gallery') ?>
            </button>
            <button id="cancel_youtube_button" type="button" class="button button-secondary">
                <?php echo esc_html__('Cancel' , 'video-wc-gallery') ?>
            </button>
        </div>
        <?php endif; ?>

        <ul id="sortable" class="video_gallery_wrapper">
            <?php if (!empty($video_url)) :
                $video_url = maybe_unserialize( $video_url );
                $break_rule = vwg_get_video_limit();
                $position_counter = 0;
                ?>
                <?php foreach ($video_url as $key => $video) :
                $position_counter++;
                if ($position_counter > $break_rule) {
                    break;
                }
                ?>
                <li class="ui-state video_id_<?php echo esc_attr($key) ?>" data-position="<?php echo esc_attr($position_counter) ?>" >
                    <div class="video-player" style="background-image: url('<?php echo esc_url($video['video_thumb_url']); ?>');">
                        <video width="100%" height="100%" controls preload="auto" crossorigin="anonymous">
                            <source src="<?php echo esc_url($video['video_url']); ?>" type="video/mp4">
                        </video>
                    </div>
                    <div class="video-actions">
                        <div class="action-btn seo-btn" data-video-id="<?php echo esc_attr($key) ?>" title="<?php echo esc_attr__('SEO settings', 'video-wc-gallery'); ?>">
                            <i class="fas fa-cog"></i>
                            <?php if (!vwg_is_pro_addon()): ?>
                            <span class="pro-badge">PRO</span>
                            <?php endif; ?>
                        </div>
                        <div class="action-btn delete-btn" data-video-id="<?php echo esc_attr($key) ?>" title="<?php echo esc_attr__('Delete', 'video-wc-gallery'); ?>">
                            <i class="fas fa-trash-alt"></i>
                        </div>
                    </div>
                    <input type="hidden" class="video_url" name="video_url[<?php echo esc_attr($key) ?>][video_url]" value="<?php echo esc_url($video['video_url']); ?>"/>
                    <input type="hidden" class="video_thumb_url" name="video_url[<?php echo esc_attr($key) ?>][video_thumb_url]" value="<?php echo esc_url($video['video_thumb_url']); ?>"/>
                    <input type="hidden" class="video_title" name="video_url[<?php echo esc_attr($key) ?>][video_title]" value="<?php echo isset($video['video_title']) ? esc_attr($video['video_title']) : ''; ?>"/>
                    <input type="hidden" class="video_description" name="video_url[<?php echo esc_attr($key) ?>][video_description]" value="<?php echo isset($video['video_description']) ? esc_attr($video['video_description']) : ''; ?>"/>
                </li>
            <?php endforeach; ?>
            <?php endif; ?>
        </ul>

        <div class="bar-btns" <?php echo (!empty($video_url)) ? '' : 'style="display:none"'?>>
            <p>
                <button id="delete_all_video_button" type="button" class="button">
                    <i class="fas fa-trash-alt"></i> <?php echo esc_html__('Delete all' , 'video-wc-gallery') ?>
                </button>
            </p>
            <div class="vwg-footer">
                <div class="vwg-video-counter">
                    <?php 
                    $video_count = !empty($video_url) ? min(count($video_url), vwg_get_video_limit()) : 0;
                    $limit = vwg_get_video_limit();
                    $is_full = ($video_count >= $limit);
                    $percentage = ($limit > 0) ? min(100, round(($video_count / $limit) * 100)) : 0;
                    ?>
                    <div class="counter-label"><?php echo esc_html__('Videos Used', 'video-wc-gallery'); ?></div>
                    <div class="counter-progress-container">
                        <div class="counter-progress-bar" style="width: <?php echo esc_attr($percentage); ?>%;" data-count="<?php echo esc_attr($video_count); ?>" data-limit="<?php echo esc_attr($limit); ?>"></div>
                    </div>
                    <div class="counter-numbers">
                        <span class="current-count <?php echo $is_full ? 'counter-limit-reached' : ''; ?>"><?php echo esc_html($video_count); ?></span>
                        <span class="separator">/</span>
                        <span class="max-count"><?php echo esc_html($limit); ?></span>
                    </div>
                </div>
                <?php if (!vwg_is_pro_addon()): ?>
                <div class="vwg-upgrade-prompt">
                    <button id="upgrade-to-pro-btn" type="button" class="button button-pro">
                        <i class="fas fa-crown"></i> <?php echo esc_html__('Upgrade to PRO' , 'video-wc-gallery') ?>
                    </button>
                </div>
                <?php endif; ?>
            </div>
        </div>
        
    </div>
    <?php
    // Allows the PRO version to add its SEO modal or other content after the gallery
    echo apply_filters('vwg_after_video_gallery_content', '');
}
add_action( 'woocommerce_product_data_panels', 'vwg_add_custom_product_tab_content' );


/**
 * Save the tab content data
 *
 * @since 2.0
 */
function vwg_save_custom_product_tab_content( $post_id ) {
    if ( isset( $_POST['video_url'] ) )  {
        $sanitized_urls = array();
        
        foreach ( $_POST['video_url'] as $key => $attachment ) {

            $unique_id = uniqid(); // Generate a unique identifier

            $sanitized_attachment = array(
                'video_url' => wp_kses_post( $attachment['video_url'] ),
                'video_thumb_url' => wp_kses_post( $attachment['video_thumb_url'] ),
            );
            
            if ( isset( $attachment['video_thumb_url'] ) ) {

                // The string contains 'data:image/png;base64,'
                if (strpos($attachment['video_thumb_url'], "data:image/png;base64,") !== false) {

                    // Decode the base64-encoded image
                    $base64_image = $attachment['video_thumb_url'];
                    // Remove the data URI scheme and get the base64-encoded image data
                    $base64_data = str_replace( 'data:image/png;base64,', '', $base64_image );
                    $decoded_image = base64_decode( $base64_data );

                    // Create a directory (if not exists) to store the uploaded images
                    $upload_dir = wp_upload_dir();
                    $target_dir = $upload_dir['basedir'] . '/video-wc-gallery-thumb/';
                    wp_mkdir_p( $target_dir );

                    // Generate a unique filename for the uploaded image
                    $filename   = 'vwg-thumb_' . $unique_id . '.png';

                    // Save the decoded image to the target directory
                    $file_path = $target_dir . $filename;
                    file_put_contents( $file_path, $decoded_image );

                    // Set the video_thumb_url to the uploaded file URL
                    $sanitized_attachment['video_thumb_url'] = $upload_dir['baseurl'] . '/video-wc-gallery-thumb/' . $filename;

                    // Resize the image to 'woocommerce_thumbnail' size
                    $thumbnail_size = wc_get_image_size( 'woocommerce_thumbnail' );
                    $thumbnail_path = $target_dir . 'vwg-thumb_' . $unique_id . '-woocommerce_thumbnail.png';
                    $thumbnail_editor = wp_get_image_editor( $file_path );
                    if ( ! is_wp_error( $thumbnail_editor ) ) {
                        $thumbnail_editor->resize( $thumbnail_size['width'], $thumbnail_size['height'], $thumbnail_size['crop'] );
                        $thumbnail_editor->save( $thumbnail_path );
                        $sanitized_attachment['woocommerce_thumbnail_url'] = $upload_dir['baseurl'] . '/video-wc-gallery-thumb/' . basename( $thumbnail_path );
                    }

                    // Resize the image to 'woocommerce_gallery_thumbnail' size
                    $gallery_thumbnail_size = wc_get_image_size( 'woocommerce_gallery_thumbnail' );
                    $gallery_thumbnail_path = $target_dir . 'vwg-thumb_' . $unique_id . '-woocommerce_gallery_thumbnail.png';
                    $gallery_thumbnail_editor = wp_get_image_editor( $file_path );
                    if ( ! is_wp_error( $gallery_thumbnail_editor ) ) {
                        $gallery_thumbnail_editor->resize( $gallery_thumbnail_size['width'], $gallery_thumbnail_size['height'], $gallery_thumbnail_size['crop'] );
                        $gallery_thumbnail_editor->save( $gallery_thumbnail_path );
                        $sanitized_attachment['woocommerce_gallery_thumbnail_url'] = $upload_dir['baseurl'] . '/video-wc-gallery-thumb/' . basename( $gallery_thumbnail_path );
                    }
                    do_action('vwg_image_paths_processed', $file_path, $thumbnail_path, $gallery_thumbnail_path);
                } else {
                    $sanitized_attachment['video_thumb_url'] = $attachment['video_thumb_url'];
                }

            }

            $sanitized_urls[ $key ] = $sanitized_attachment;
        }
        update_post_meta( $post_id, 'vwg_video_url', $sanitized_urls  );
    } else {
        update_post_meta( $post_id, 'vwg_video_url', '');
    }
}
add_action( 'woocommerce_process_product_meta', 'vwg_save_custom_product_tab_content' );

/**
 * Add the media upload script
 *
 * @since 2.1
 */
function vwg_add_video_upload_script() {
    ?>
    <script type="text/javascript">
        jQuery(document).ready(function($) {

            $('#vwg_video_tab_content').attr('v-limit', <?php echo vwg_get_video_limit(); ?>)
            $('#vwg_video_tab_content').attr('is-pro', <?php echo vwg_is_pro_addon() ? 1 : 0; ?>)
            
            var pvc = <?php echo intval(vwg_pvc()); ?>;
            var pml = <?php echo intval(vwg_pml()); ?>;
            var php = <?php echo !empty(get_post_meta(get_the_ID(), 'vwg_video_url', true)) ? 1 : 0; ?>;
            var isPro = <?php echo vwg_is_pro_addon() ? 1 : 0; ?>;

            var media_uploader;
            var currentVideoCount = $('#sortable li').length;
            var videoLimit = parseInt($('#vwg_video_tab_content').attr('v-limit'));
            var isPro = parseInt($('#vwg_video_tab_content').attr('is-pro'));

            // YouTube button click handler
            $('#add_youtube_button').on('click', function(e) {
                e.preventDefault();

                // Create a hidden element and trigger a click on it to open the pricing popup
                var proInfoLink = $('<a href="#" class="open-vwg-modal-pro-info" style="display:none;">Pro Info</a>');
                $('body').append(proInfoLink);
                proInfoLink.trigger('click');
                proInfoLink.remove();
            });

            // Simple sortable initialization
            $(".video_gallery_wrapper").sortable({
                helper: "original",
                containment: "parent",
                cursor: "move",
                tolerance: "pointer",
                forceHelperSize: true,
                forcePlaceholderSize: true,
                placeholder: "ui-sortable-placeholder",
                start: function(e, ui) {
                    ui.placeholder.height(ui.item.height());
                    ui.placeholder.width(ui.item.width());
                    // Remove hover effects during sorting
                    $('#vwg_video_tab_content .ui-state').css('transform', 'none');
                },
                stop: function(e, ui) {
                    // Restore hover effects after sorting
                    $('#vwg_video_tab_content .ui-state').css('transform', '');
                    // Update position attributes
                    resetVideoPositions();
                }
            });
            $(".video_gallery_wrapper").disableSelection();

            // Delete all videos button
            $('#delete_all_video_button').on('click', function() {
                // Show confirmation dialog before deleting all videos
                Swal.fire({
                    title: '<?php echo esc_js(__('Delete All Videos?', 'video-wc-gallery')); ?>',
                    text: '<?php echo esc_js(__('Are you sure you want to delete all videos? This action cannot be undone.', 'video-wc-gallery')); ?>',
                    icon: 'warning',
                    showCancelButton: true,
                    confirmButtonColor: '#dc3545',
                    cancelButtonColor: '#6c757d',
                    confirmButtonText: '<?php echo esc_js(__('Yes, delete all', 'video-wc-gallery')); ?>',
                    cancelButtonText: '<?php echo esc_js(__('Cancel', 'video-wc-gallery')); ?>',
                    buttonsStyling: true,
                    focusConfirm: false,
                    focusCancel: false,
                    showClass: {
                        popup: 'animate__animated animate__fadeIn'
                    },
                    hideClass: {
                        popup: 'animate__animated animate__fadeOut'
                    },
                    background: '#fff',
                    backdrop: 'rgba(0,0,0,0.4)'
                }).then((result) => {
                    if (result.isConfirmed) {
                        // If user confirms, delete all videos
                        $('.video_gallery_wrapper').empty();
                        $('.bar-btns').hide();
                        currentVideoCount = 0;
                        updateVideoCounter(); // Update the counter after deletion
                    }
                });
            });

            // Upgrade to PRO button
            $('#upgrade-to-pro-btn').on('click', function(e) {
                e.preventDefault();
                // Create a hidden element and trigger a click on it to open the pricing popup
                var proInfoLink = $('<a href="#" class="open-vwg-modal-pro-info" style="display:none;">Pro Info</a>');
                $('body').append(proInfoLink);
                proInfoLink.trigger('click');
                proInfoLink.remove();
            });
            
            // Delete single video button
            $(document).on('click', '.action-btn.delete-btn', function() {
                const videoId = $(this).data('video-id');
                
                // Show confirmation dialog before deleting
                Swal.fire({
                    title: '<?php echo esc_js(__('Delete Video?', 'video-wc-gallery')); ?>',
                    text: '<?php echo esc_js(__('Are you sure you want to delete this video? This action cannot be undone.', 'video-wc-gallery')); ?>',
                    icon: 'warning',
                    showCancelButton: true,
                    confirmButtonColor: '#dc3545',
                    cancelButtonColor: '#6c757d',
                    confirmButtonText: '<?php echo esc_js(__('Yes, delete it!', 'video-wc-gallery')); ?>',
                    cancelButtonText: '<?php echo esc_js(__('Cancel', 'video-wc-gallery')); ?>',
                    buttonsStyling: true,
                    customClass: {
                        confirmButton: 'swal-button-no-outline',
                        cancelButton: 'swal-button-no-outline'
                    }
                }).then((result) => {
                    if (result.isConfirmed) {
                        $('.video_id_' + videoId).remove();
                        
                        // Check if there are any videos left
                        if ($('.video_gallery_wrapper > li[class*="video_id_"]').length === 0) {
                            $('.bar-btns').hide();
                            currentVideoCount = 0;
                        }
                        
                        resetVideoPositions();
                        updateVideoCounter();
                    }
                });
            });
            
            // Function to reset video positions after deletion
            function resetVideoPositions() {
                // Reset position counters
                $('.video_gallery_wrapper > li[class*="video_id_"]').each(function(index) {
                    $(this).attr('data-position', index + 1);
                });
                
                // Update currentVideoCount
                currentVideoCount = $('.video_gallery_wrapper > li[class*="video_id_"]').length;
            }
            
            // Function to update video counter
            function updateVideoCounter() {
                var currentCount = $('.video_gallery_wrapper > li[class*="video_id_"]').length;
                var maxLimit = parseInt($('#vwg_video_tab_content').attr('v-limit'));
                var percentage = (maxLimit > 0) ? Math.min(100, Math.round((currentCount / maxLimit) * 100)) : 0;
                var isLimitReached = currentCount >= maxLimit;

                $('.counter-progress-bar').css('width', percentage + '%');
                $('.current-count').text(currentCount);
                $('.counter-progress-bar').attr('data-count', currentCount);
                
                if (isLimitReached) {
                    $('.current-count').addClass('counter-limit-reached');
                    $('.counter-progress-bar').addClass('progress-limit-reached');
                } else {
                    $('.current-count').removeClass('counter-limit-reached');
                    $('.counter-progress-bar').removeClass('progress-limit-reached');
                }
            }
            
            // SEO button functionality
            $(document).on('click', '.action-btn.seo-btn', function() {
                var videoID = $(this).data('video-id');
                var videoItem = $(`.video_id_${videoID}`);
                var video_title = videoItem.find('.video_title').val() || '';
                var video_description = videoItem.find('.video_description').val() || '';
                
                // Check if PRO version is activated
                if ($('#vwg_video_tab_content').attr('is-pro') === '1') {
                    // Open SEO modal window in PRO version
                    $('#vwg-seo-modal').data('video-id', videoID);
                    $('#video_title_field').val(video_title);
                    $('#video_description_field').val(video_description);
                    $('#vwg-seo-modal').show();
                } else {
                    // Show PRO version popup in free version
                    // Create a hidden element and trigger a click on it to open the pricing popup
                    var proInfoLink = $('<a href="#" class="open-vwg-modal-pro-info" style="display:none;">Pro Info</a>');
                    $('body').append(proInfoLink);
                    proInfoLink.trigger('click');
                    proInfoLink.remove();
                }
            });
            
            // Modal close functionality
            $('.vwg-modal-close').on('click', function() {
                $(this).closest('.vwg-modal').hide();
            });
            
            // Click outside modal to close
            $(window).on('click', function(event) {
                if ($(event.target).hasClass('vwg-modal')) {
                    $('.vwg-modal').hide();
                }
            });
            
            // Save SEO settings
            $('#save-seo-settings').on('click', function() {
                var videoID = $('#vwg-seo-modal').data('video-id');
                var videoItem = $(`.video_id_${videoID}`);
                var video_title = $('#video_title_field').val();
                var video_description = $('#video_description_field').val();
                
                videoItem.find('.video_title').val(video_title);
                videoItem.find('.video_description').val(video_description);
                
                $('#vwg-seo-modal').hide();
            });

            $('#add_video_button').on('click', function(e) {
                e.preventDefault();
                
                if (!isPro && !php && pvc >= pml) {
                    Swal.fire({
                        title: '<?php echo esc_js(__('Product Limit Reached', 'video-wc-gallery')); ?>',
                        html: '<div class="swal-limit-content">' +
                              '<p><?php echo esc_js(__('You have reached the maximum limit of', 'video-wc-gallery')); ?> <strong>' + pml + ' <?php echo esc_js(__('products', 'video-wc-gallery')); ?></strong> <?php echo esc_js(__('with videos in the free version.', 'video-wc-gallery')); ?></p>' +
                              '<p><?php echo esc_js(__('Upgrade to PRO for', 'video-wc-gallery')); ?> <strong><?php echo esc_js(__('unlimited', 'video-wc-gallery')); ?></strong> <?php echo esc_js(__('products with videos!', 'video-wc-gallery')); ?></p>' +
                              '</div>',
                        icon: 'warning',
                        showCancelButton: true,
                        confirmButtonColor: '#6C5CE7',
                        cancelButtonColor: '#6c757d',
                        confirmButtonText: '<?php echo esc_js(__('View Plans', 'video-wc-gallery')); ?>',
                        cancelButtonText: '<?php echo esc_js(__('Maybe Later', 'video-wc-gallery')); ?>',
                        buttonsStyling: true,
                        focusConfirm: false,
                        focusCancel: false,
                        background: '#fff',
                        backdrop: 'rgba(0,0,0,0.4)',
                        showClass: {
                            popup: 'animate__animated animate__fadeIn'
                        },
                        hideClass: {
                            popup: 'animate__animated animate__fadeOut'
                        }
                    }).then((result) => {
                        if (result.isConfirmed) {
                            window.open('https://nitramix.com/projects/video-gallery-for-woocommerce', '_blank');
                        }
                    });
                    return;
                }
                
                if(currentVideoCount >= videoLimit && isPro == 0) {
                    // Show modal for upgrading to PRO version with SweetAlert
                    Swal.fire({
                        title: '<?php echo esc_js(__('Video Limit Reached', 'video-wc-gallery')); ?>',
                        html: `
                            <div class="swal-limit-content">
                                <p><?php echo sprintf(
                                    __('You\'ve reached the maximum limit of %s in the free version.', 'video-wc-gallery'), 
                                    '<strong>2 videos</strong>'
                                ); ?></p>
                                <p><?php echo sprintf(
                                    __('Upgrade to PRO to add up to %s per product!', 'video-wc-gallery'), 
                                    '<strong>6 videos</strong>'
                                ); ?></p>
                            </div>
                        `,
                        icon: 'warning',
                        showCancelButton: true,
                        confirmButtonColor: '#6C5CE7',
                        cancelButtonColor: '#6c757d',
                        confirmButtonText: '<?php echo esc_js(__('Upgrade to PRO', 'video-wc-gallery')); ?>',
                        cancelButtonText: '<?php echo esc_js(__('Maybe Later', 'video-wc-gallery')); ?>',
                        buttonsStyling: true,
                        focusConfirm: false,
                        focusCancel: false,
                        background: '#fff',
                        backdrop: 'rgba(0,0,0,0.4)',
                        showClass: {
                            popup: 'animate__animated animate__fadeIn'
                        },
                        hideClass: {
                            popup: 'animate__animated animate__fadeOut'
                        }
                    }).then((result) => {
                        if (result.isConfirmed) {
                            window.open('https://nitramix.com/projects/video-gallery-for-woocommerce', '_blank');
                        }
                    });
                    return;
                }

                if (media_uploader) {
                    media_uploader.open();
                    return;
                }
                
                media_uploader = wp.media.frames.file_frame = wp.media({
                    title: '<?php echo esc_html__('Select video' , 'video-wc-gallery') ?>',
                    button: {
                        text: '<?php echo esc_html__('Select video' , 'video-wc-gallery') ?>'
                    },
                    library: {
                        type: 'video'
                    },
                    multiple: false
                });
                media_uploader.on('select', function() {
                    var attachment = media_uploader.state().get('selection').first().toJSON();

                    currentVideoCount++

                    if ($('.video_gallery_wrapper > li[class*="video_id_"]').length !== 0) {
                        var last_pos = parseInt($('.video_gallery_wrapper > li[class*="video_id_"]').last().data('position'))
                        currentVideoCount = last_pos + 1
                    }
                    
                    if ($('.video_gallery_wrapper > li[class*="video_id_"]').length < parseInt($('#vwg_video_tab_content').attr('v-limit')) ) {

                        $('.video_gallery_wrapper').append(`
                            <li class="ui-state video_id_${attachment.id}" data-position="${currentVideoCount}" >
                                <div class="video-player" style="background-image: url('${attachment.url}');">
                                    <video width="100%" height="100%" controls preload="auto" crossorigin="anonymous">
                                        <source src="${attachment.url}" type="video/mp4">
                                    </video>
                                </div>
                                <div class="video-actions">
                                    <div class="action-btn seo-btn" data-video-id="${attachment.id}" title="${'SEO settings'}">
                                        <i class="fas fa-cog"></i>
                                        ${$('#vwg_video_tab_content').attr('is-pro') === '0' ? '<span class="pro-badge">PRO</span>' : ''}
                                    </div>
                                    <div class="action-btn delete-btn" data-video-id="${attachment.id}" title="${'Delete'}">
                                        <i class="fas fa-trash-alt"></i>
                                    </div>
                                </div>
                                <input type="hidden" class="video_url" name="video_url[${attachment.id}][video_url]" value="${attachment.url}"/>
                                <input type="hidden" class="video_thumb_url" name="video_url[${attachment.id}][video_thumb_url]" value=""/>
                                <input type="hidden" class="video_title" name="video_url[${attachment.id}][video_title]" value="${attachment.title}"/>
                                <input type="hidden" class="video_description" name="video_url[${attachment.id}][video_description]" value="${attachment.caption}"/>
                            </li>
                        `)

                        // Load the video element
                        var video = $(`.video_id_${attachment.id} video`)[0];
                        var dataURI;

                        // When the video metadata is loaded, extract the image
                        $(video).on('loadeddata', function() {
                            // Create a canvas element
                            var canvas = $('<canvas></canvas>')[0];
                            canvas.width = video.videoWidth;
                            canvas.height = video.videoHeight;

                            // Draw the video frame on the canvas
                            var ctx = canvas.getContext('2d');
                            ctx.drawImage(video, 0, 0, canvas.width, canvas.height);

                            // Get the image data from the canvas and create a URL for the image
                            dataURI = canvas.toDataURL('image/png');

                            $(`.video_id_${attachment.id} .video_thumb_url`).val(dataURI);
                            
                            // Update the counter after adding a new video
                            updateVideoCounter();
                        });

                    } else {
                        if ( $('#vwg_video_tab_content').attr('is-pro') === '1') {
                            Swal.fire({
                                title: '<?php echo esc_html__('Ops..' , 'video-wc-gallery') ?>',
                                text: `<?php echo esc_html__('Can add only', 'video-wc-gallery') ?> ${ $('#vwg_video_tab_content').attr('v-limit') } <?php echo esc_html__('videos !', 'video-wc-gallery') ?>`,
                                icon: 'warning',
                                confirmButtonColor: '#6C5CE7',
                                confirmButtonText: '<?php echo esc_js(__('OK', 'video-wc-gallery')); ?>',
                                buttonsStyling: true,
                                focusConfirm: false,
                                background: '#fff',
                                backdrop: 'rgba(0,0,0,0.4)'
                            });
                        } else {
                            Swal.fire({
                                title: '<?php echo esc_html__('Ops..' , 'video-wc-gallery') ?>',
                                html: `<?php echo esc_html__('Can add only', 'video-wc-gallery') ?> ${ $('#vwg_video_tab_content').attr('v-limit') } <?php echo esc_html__('videos !', 'video-wc-gallery') ?>
                                 <br><br><?php echo esc_html__('To be able to add more videos get', 'video-wc-gallery') ?> <a class="open-vwg-modal-pro-info" href="#"><?php echo esc_html__('PRO version', 'video-wc-gallery') ?></a>
                                `,
                                icon: 'warning',
                                confirmButtonColor: '#6C5CE7',
                                confirmButtonText: '<?php echo esc_js(__('OK', 'video-wc-gallery')); ?>',
                                buttonsStyling: true,
                                focusConfirm: false,
                                background: '#fff',
                                backdrop: 'rgba(0,0,0,0.4)'
                            });
                        }
                    }

                    $('.bar-btns').show();
                    
                    // Update video counter
                    updateVideoCounter();
                });
                media_uploader.open();
            });

        });
    </script>

    <style>
        #vwg_video_tab_content .video_gallery_wrapper {
            display: flex;
            position: relative;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 10px;
        }
        #vwg_video_tab_content .ui-state {
            position: relative;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-radius: 10px;
            background: #fff;
            width: calc(33.33% - 14px);
            min-width: 220px;
            overflow: hidden;
            transition: all 0.2s ease;
        }
        #vwg_video_tab_content .ui-state:hover {
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }
        #vwg_video_tab_content .video-player {
            position: relative;
            width: 100% !important;
            height: 180px !important;
            background: #f0f0f0 !important;
            overflow: hidden;
        }
        #vwg_video_tab_content .video-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 10px;
            gap: 8px;
            background: #f9f9f9;
            border-top: 1px solid #eee;
        }
        #vwg_video_tab_content .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #666;
            background: #fff;
            border: 1px solid #ddd;
            transition: all 0.2s ease;
        }
        #vwg_video_tab_content .action-btn:hover {
            background: #f0f0f0;
            color: #333;
        }
        #vwg_video_tab_content .action-btn.seo-btn {
            color: #6c5ce7;
            position: relative;
        }
        
        /* PRO Badge */
        .pro-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #6c5ce7;
            color: white;
            font-size: 9px;
            font-weight: bold;
            padding: 2px 4px;
            border-radius: 4px;
            line-height: 1;
            text-transform: uppercase;
        }

        /* YouTube button styles */
        #vwg_video_tab_content #add_youtube_button {
            background: #ff0000;
            color: white;
            border-color: #ff0000;
            position: relative;
        }

        #vwg_video_tab_content #add_youtube_button:hover {
            background: #cc0000;
            border-color: #cc0000;
        }

        #vwg_video_tab_content #add_youtube_button .pro-badge {
            top: -8px;
            right: -8px;
        }
        #vwg_video_tab_content .action-btn.delete-btn {
            color: #ff5252;
        }
        #vwg_video_tab_content .action-btn.delete-btn:hover {
            background: #ff5252;
            color: #fff;
            border-color: #ff5252;
        }
        #vwg_video_tab_content .mejs-container {
            width: 100% !important;
            height: 100% !important;
            overflow: hidden;
        }
        #vwg_video_tab_content video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: move;
        }
        #woocommerce-product-data ul.wc-tabs li.vwg_video_tab_tab a::before {
            content: "\f236";
        }
        
        /* Sortable styles */
        .ui-sortable-helper {
            transform: none !important;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
            opacity: 0.8 !important;
            width: calc(33.33% - 14px) !important;
            max-width: 250px !important;
            width: 100% !important;
        }
        
        .ui-sortable-placeholder {
            visibility: visible !important;
            border: 2px dashed #6c5ce7 !important;
            background-color: rgba(108, 92, 231, 0.08) !important;
            border-radius: 10px;
            min-height: 100px !important;
            width: calc(33.33% - 14px) !important;
            max-width: 250px !important;
            width: 100% !important;
        }
        
        /* Fix for items not jumping during drag */
        #vwg_video_tab_content .video_gallery_wrapper.ui-sortable {
            min-height: 230px;
        }
        
        #vwg_video_tab_content .ui-state:hover {
            transform: none !important;
        }

        .vwg-add-video-button-container {
           display: flex;
           align-items: center;
           flex-wrap: wrap;
           gap: 20px;
        }

        .vwg-add-video-button-container label {
           font-size: 18px;
           margin-bottom: 0;
        }

        /* Keep label and buttons on same line */
        .vwg-add-video-button-container {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .vwg-button-separator {
            color: #666;
            font-size: 14px;
            font-weight: 500;
            text-transform: lowercase;
            padding: 0 4px;
        }

        /* Responsive styles for mobile */
        @media (max-width: 768px) {
            .vwg-add-video-button-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            #vwg_video_tab_content #add_video_button,
            #vwg_video_tab_content #add_youtube_button {
                width: 100%;
                min-width: auto;
                font-size: 14px;
                padding: 10px 16px;
                justify-content: center;
            }

            .vwg-button-separator {
                font-size: 13px;
            }
        }
        
        /* Button styles */
        #vwg_video_tab_content #add_video_button,
        #vwg_video_tab_content #add_youtube_button {
            padding: 8px 16px;
            height: auto;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            margin: 0;
            min-width: 140px;
            justify-content: center;
        }

        #vwg_video_tab_content #add_video_button {
            background: #6c5ce7;
            color: white;
            border-color: #6c5ce7;
        }

        #vwg_video_tab_content #add_video_button:hover {
            background: #5649c0;
            border-color: #5649c0;
        }
        #vwg_video_tab_content .bar-btns {
            margin-top: 16px;
        }
        #vwg_video_tab_content .bar-btns button {
            background: #f0f0f0;
            color: #666;
            border-color: #ddd;
            padding: 8px 16px;
            height: auto;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        #vwg_video_tab_content .bar-btns button:hover {
            background: #e5e5e5;
            color: #333;
        }
        
        /* Footer styles */
        .vwg-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .vwg-video-counter {
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 200px;
        }
        
        .counter-label {
            font-size: 12px;
            font-weight: 600;
            color: #495057;
            margin-bottom: 2px;
        }
        
        .counter-progress-container {
            height: 8px;
            background: #e9ecef;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        
        .counter-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #6c5ce7, #a29bfe);
            border-radius: 20px;
            transition: width 0.3s ease;
            position: relative;
        }
        
        .progress-limit-reached {
            background: linear-gradient(90deg, #ff6b6b, #ff8787);
        }
        
        .counter-numbers {
            display: flex;
            font-size: 13px;
            justify-content: flex-end;
            align-items: center;
            margin-top: 3px;
        }
        
        .current-count {
            font-weight: 700;
            color: #495057;
        }
        
        .separator {
            color: #adb5bd;
            margin: 0 3px;
        }
        
        .max-count {
            color: #6c757d;
        }
        
        .counter-limit-reached {
            color: #fa5252;
        }
        
        .vwg-upgrade-prompt .button-pro {
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 13px;
            padding: 6px 15px;
            height: auto;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .vwg-upgrade-prompt .button-pro:hover {
            background: linear-gradient(45deg, #5649c0, #6c5ce7);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(108, 92, 231, 0.4);
        }
        
        .vwg-upgrade-prompt .button-pro:active {
            transform: translateY(0);
            box-shadow: 0 2px 5px rgba(108, 92, 231, 0.3);
        }
        
        .vwg-upgrade-prompt .button-pro i {
            font-size: 12px;
        }
                
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            #vwg_video_tab_content .ui-state {
                width: calc(50% - 10px);
            }
        }
        @media (max-width: 768px) {
            #vwg_video_tab_content .ui-state {
                width: 100%;
            }
        }

        /* SweetAlert custom styles */
        .swal-limit-content {
            padding: 20px 0 10px;
            text-align: center;
        }
        
        .swal-limit-content p {
            margin: 12px 0;
            font-size: 16px;
            line-height: 1.6;
            color: #4A5568;
        }
        
        .swal-limit-content strong {
            color: #2D3748;
            font-weight: 600;
        }
        
        /* Specific styles for SweetAlert buttons */
        .swal2-styled:focus {
            box-shadow: none !important;
            outline: none !important;
        }
    </style>

    <?php
}
add_action( 'admin_footer-post.php', 'vwg_add_video_upload_script' );
add_action( 'admin_footer-post-new.php', 'vwg_add_video_upload_script' );

/**
 * Add custom style and scripts in product page (IMPORTANT)
 *
 * @since 2.3
 */
function vwg_add_custom_style_and_scripts_product_page() {
    if ( is_product() ) {
        global $product;

        // Ensure $product is a valid object and initialize if necessary
        if (!is_object($product)) {
            $product = wc_get_product(get_the_ID());
        }

        // Verify that we now have a valid product object
        if (!is_object($product)) {
            return; // Exit the function if $product is still not valid
        }

        $iconColor = get_option('vwg_settings_group')['vwg_settings_icon_color'];
        $icon = get_option('vwg_settings_group')['vwg_settings_icon'];
        $adaptSettings = get_option('vwg_settings_group')['vwg_settings_video_adapt_sizes'];
        $showFirstClassSettings = get_option('vwg_settings_group')['vwg_settings_show_first'];
        $useDefaultAttrVariable = 0;

        // {{ ! }}

        if ($product->is_type('variable')) {
            $default_attributes = $product->get_default_attributes();
            if ($default_attributes && isset($showFirstClassSettings) && $showFirstClassSettings == 1) {
                $useDefaultAttrVariable = 1;
            }
        }

        if ($icon == 'far fa-play-circle') {
            $unuCodeIcon = 'f144';
            $iconWeight = '500';
        } elseif ($icon == 'fas fa-play-circle') {
            $unuCodeIcon = 'f144';
            $iconWeight = '900';
        } elseif ($icon == 'fas fa-play') {
            $unuCodeIcon = 'f04b';
            $iconWeight = '900';
        } elseif ($icon == 'fas fa-video') {
            $unuCodeIcon = 'f03d';
            $iconWeight = '900';
        } elseif ($icon == 'fas fa-file-video') {
            $unuCodeIcon = 'f1c8';
            $iconWeight = '900';
        } elseif ($icon == 'far fa-file-video') {
            $unuCodeIcon = 'f1c8';
            $iconWeight = '500';
        } else {
            $unuCodeIcon = 'f04b';
            $iconWeight = '900';
        }
        ?>
        <style>
            .vwg-video-wrapper { width: 100%; height: 100%; overflow: hidden; position: relative; margin: auto !important; }
            .vwg-video-wrapper img { width: 100%; height: 100%; margin: auto !important; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) }
            /*.vwg-video-wrapper img.vwg-generated-thumb { width: 100% !important; height: 100% !important;}*/
            .vwg-video-wrapper i { font-size: 24px; color: <?=esc_attr($iconColor)?>; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
            .woocommerce div.product div.images .flex-control-thumbs li .vwg-video-wrapper {cursor: pointer;opacity: .5;margin: 0;}
            .woocommerce div.product div.images .flex-control-thumbs li .vwg-video-wrapper:hover, .woocommerce div.product div.images .flex-control-thumbs li .vwg-video-wrapper.flex-active {opacity: 1;}

            /* {{ ! }} */

            /*.woocommerce-product-gallery__image .woocommerce-product-gallery__vwg_video .video-js {*/
            /*    background-color: #000;*/
            /*    margin: 0 auto;*/
            /*}*/

            /* Center the play button */
            .vwg_video_js .vjs-big-play-button {
                top: 50% !important;
                left: 50% !important;
                transform: translate(-50%, -50%) !important;
                border-color: <?=esc_attr($iconColor)?> !important;
            }
            /* Replace the default play button with a FontAwesome icon */
            .vwg_video_js .vjs-big-play-button .vjs-icon-placeholder:before {
                content: '\<?=esc_attr($unuCodeIcon)?>';
                font-family: 'Font Awesome 5 Free';
                font-weight: <?=esc_attr($iconWeight)?>;
                font-size: 30px;
                color: <?=esc_attr($iconColor)?>;
            }

            <?php if (isset($adaptSettings) && $adaptSettings == 1) : ?>
            .woocommerce-product-gallery__image .woocommerce-product-gallery__vwg_video video {
                object-fit: cover;
            }

            .woocommerce-product-gallery__image .woocommerce-product-gallery__vwg_video .vjs-fullscreen video {
                object-fit: contain;
            }

            @media only screen and (max-width: 1200px) {
                .woocommerce-product-gallery__image .woocommerce-product-gallery__vwg_video .vwg_video_js {
                    position: relative;
                    width: 100%;
                    padding-top: 133.33%;
                    max-width: 100%;
                    height: 0;
                }
            }
            <?php endif; ?>

        </style>

        <?php if (vwg_active_theme_checker() === 'Flatsome') : ?>

        <!-- fix for stacket option -->
        <style>
            .product-gallery-stacked .woocommerce-product-gallery__image[data-vwg-video] {
                position: unset !important;
                margin-top: 1.5em !important;
            }
        </style>
        <!-- fix for stacket option -->

        <script>
            jQuery( document ).ready(function($) {
                setInterval(function () {
                    var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent) || /apple/i.test(navigator.vendor);
                    var $activeVideoSlide = jQuery('.woocommerce-product-gallery__image.is-selected .woocommerce-product-gallery__vwg_video')
                    
                        // Pause all inactive videos
                        jQuery('.woocommerce-product-gallery__image').each(function() {
                            var $slide = jQuery(this);
                            var isActive = $slide.hasClass('flex-active-slide');
                            var $video = $slide.find('.woocommerce-product-gallery__vwg_video video');
                            
                            if ($video.length > 0) {
                                var videoId = $video.attr('id');
                                var hasAutoplay = $video.attr('autoplay') !== undefined;
                                var hasControls = $video.hasClass('.vjs-controls-enabled');

                                // When video player is initialized
                                if (typeof videojs !== 'undefined' && videoId) {
                                    var player = videojs(videoId);

                                    // Set user active/inactive state based on slide
                                    if (isActive) {
                                        player.options_.inactivityTimeout = 10000; // 10 seconds
                                        player.userActive(true);
                                    } else {
                                        player.userActive(false);
                                    }

                                    if (!hasControls) {
                                        jQuery($slide).on('click', function() {
                                            if (player.paused()) {  
                                                player.play();
                                            } else {
                                                player.pause();
                                            }
                                        });
                                    } 
    
                                    if (hasAutoplay) {
                                        // User became inactive (vjs-user-inactive class added)
                                        player.on('userinactive', function() {
                                            player.pause();
                                        });
    
                                        // User became active (vjs-user-inactive class removed)
                                        player.on('useractive', function() {
                                            player.play();
                                        });

                                        // Video was paused
                                        // player.on('pause', function() {
                                        //     console.log('Video paused');
                                        // });

                                        // Video started playing
                                        // player.on('play', function() {
                                        //     console.log('Video playing');
                                        // });
                                    }
                                }
                            }
                        });
                    
                    if ($activeVideoSlide.length > 0 ) {
                        var vwg_video_ID = jQuery('.woocommerce-product-gallery__image.is-selected').attr('data-vwg-video')
                        var vwg_video_isAutoPlay = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('autoplay')
                        var vwg_video_loop = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('loop')
                        var vwg_video_pause = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('pause')
                        var vwg_user_pause = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('user_pause')
                        var vwg_controls_enabled = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).hasClass('.vjs-controls-enabled')
                        if (isSafari && vwg_video_isAutoPlay && !vwg_video_pause ) {
                            var vwgPlayer = videojs(`vwg_video_js_${vwg_video_ID}`);
                            if (vwg_video_loop) {
                                if(vwg_controls_enabled) {
                                    vwgPlayer.play();
                                } else {
                                    if (!vwg_user_pause) {
                                        vwgPlayer.play();
                                        // Listen for the 'pause' event to detect when the video is paused
                                        vwgPlayer.on('pause', function () {
                                            vwgPlayer.pause();
                                            var posterUrl = vwgPlayer.poster();
                                            if (posterUrl) {
                                                var posterStyle = 'url("' + posterUrl + '")';
                                                vwgPlayer.el().style.display = 'block';
                                                vwgPlayer.el().style.backgroundImage = posterStyle;
                                                vwgPlayer.el().style.backgroundSize = 'cover';
                                                vwgPlayer.el().style.backgroundPosition = 'center';
                                            }
                                            $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('user_pause', 'true');
                                        });
                                    }
                                }
                            } else {
                                vwgPlayer.play();
                                vwgPlayer.on('ended', function () {
                                    vwgPlayer.currentTime(0);
                                    $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('pause', 'true');
                                });
                            }
                        }
                        jQuery('a[href="#product-zoom"]').hide()
                    } else {
                        jQuery('a[href="#product-zoom"]').show()
                    }
                }, 500); // Check every 0.5 seconds

                /**
                 * Add function fix variable product with option video show first
                 *
                 * @since 1.39
                 */
                <?php if (isset($showFirstClassSettings) && $showFirstClassSettings == 1) : ?>
                    var isFirstLoad = true;
                    
                    // Use event model instead of overwriting WooCommerce functions
                    $(document).ready(function() {
                        setTimeout(function() {
                            // Handle found_variation event
                            $(document).on('found_variation', 'form.variations_form', function(event, variation) {
                                // Modify first slide to show variation image
                                if (variation && variation.image && variation.image.src) {
                                    var $product_gallery = $('.images');
                                    var $product_img_wrap = $product_gallery
                                        .find('.woocommerce-product-gallery__image.vwg_show_first, .woocommerce-product-gallery__image--placeholder.vwg_show_first')
                                        .eq(0);
                                 
                                    var $vwg_video = $product_img_wrap.find('div.vwg_video_js');
                                    var $gallery_first_img_icon = $('.product-thumbnails .flickity-slider').find('div.col.first a i');
                                    
                                    // Hide video and icon
                                    $vwg_video.hide();
                                    $gallery_first_img_icon.hide();
                                    
                                    // Check if we have vwg-test image, if not - create it
                                    var $vwg_custom_img = $product_img_wrap.find('a').find('img.vwg-test');
                                    if (!$vwg_custom_img.length) {
                                        $product_img_wrap.find('a').append('<img class="vwg-test" />');
                                        $vwg_custom_img = $product_img_wrap.find('a').find('img.vwg-test');
                                    }
                                    
                                    // Set image attributes
                                    $vwg_custom_img.attr('src', variation.image.src);
                                    if (variation.image.srcset) {
                                        $vwg_custom_img.attr('srcset', variation.image.srcset);
                                    }
                                    $vwg_custom_img.attr('height', variation.image.src_h);
                                    $vwg_custom_img.attr('width', variation.image.src_w);
                                    $vwg_custom_img.attr('title', variation.image.title || '');
                                    $vwg_custom_img.attr('alt', variation.image.alt || '');
                                    $vwg_custom_img.attr('data-src', variation.image.full_src || '');
                                    $vwg_custom_img.attr('data-large_image', variation.image.full_src || '');                                
                                    
                                    // Resize and zoom after processing
                                    setTimeout(function() {
                                        $(window).trigger('resize');
                                        $product_gallery.trigger('woocommerce_gallery_init_zoom');
                                    }, 20);
                                }
                            });
                            
                            // Handle reset_image event
                            $(document).on('reset_image', 'form.variations_form', function(event) {
                                var $product_gallery = $('.images');
                                var $product_img_wrap = $product_gallery
                                    .find('.woocommerce-product-gallery__image.vwg_show_first, .woocommerce-product-gallery__image--placeholder.vwg_show_first')
                                    .eq(0);
                                
                                var $vwg_video = $product_img_wrap.find('div.vwg_video_js');
                                var $vwg_custom_img = $product_img_wrap.find('a').find('img.vwg-test');
                                var $gallery_first_img_icon = $('.product-thumbnails .flickity-slider').find('div.col.first a i');
                                
                                // Show video and icon again
                                $vwg_video.show();
                                $gallery_first_img_icon.show();
                                
                                // Remove custom image
                                if ($vwg_custom_img.length) {
                                    $vwg_custom_img.remove();
                                }
                                
                                // Additional attempt to show icons
                                setTimeout(function() {
                                    $('.product-thumbnails .flickity-slider').find('div.col.first a i').show();
                                }, 50);
                            });
                            
                            // Handle reset_variations button
                            $(document).on('click', '.reset_variations', function() {
                                var $product_gallery = $('.images');
                                var $product_img_wrap = $product_gallery
                                    .find('.woocommerce-product-gallery__image.vwg_show_first, .woocommerce-product-gallery__image--placeholder.vwg_show_first')
                                    .eq(0);
                                
                                var $vwg_video = $product_img_wrap.find('div.vwg_video_js');
                                var $vwg_custom_img = $product_img_wrap.find('a').find('img.vwg-test');
                                var $gallery_first_img_icon = $('.product-thumbnails .flickity-slider').find('div.col.first a i');
                                
                                // Show video and icon again
                                $vwg_video.show();
                                $gallery_first_img_icon.show();
                                
                                // Remove custom image
                                if ($vwg_custom_img.length) {
                                    $vwg_custom_img.remove();
                                }
                            });
                        }, 500); // Give enough time for WooCommerce to load
                    });
                    <?php endif; ?>

                 // Add vwg-variable class to first element
                if (<?php echo $useDefaultAttrVariable; ?> === 1) {
                    $(document).on('wc_variation_form', function() {
                        setTimeout(function() {
                            $('.product-thumbnails .flickity-slider').find('div.col.first a i').hide();
                        }, 50);
                    });
                }
            });
        </script>

        <?php else: ?>
            <script>
                jQuery( document ).ready(function($) {
                    var li_height;
                    setInterval(function () {
                        jQuery('ol.flex-control-nav').each(function() {
                            jQuery(this).find('li img').each(function(index) {
                                var src = jQuery(this).attr('src');
                                // {{ ! }}
                                if (!src.includes('/video-wc-gallery-thumb')) {
                                    li_height = jQuery(this).height();
                                }
                                // {{ ! }}

                                // Check if use default variable value and show first option
                                if (index === 0 ) {
                                    jQuery(this).parent('li').attr('use-default-att-variable', <?php echo esc_attr($useDefaultAttrVariable) ?>)
                                    if (jQuery(this).parent('li').attr('use-default-att-variable') === 1 && jQuery(this).closest('.vwg-video-wrapper').length === 0) {
                                        jQuery(this).wrap(`<div class="vwg-video-wrapper"></div>`);
                                        // {{ ! }}
                                        jQuery(this).closest('.vwg-video-wrapper').append('<i class="<?= esc_html($icon) ?>"></i>');
                                    }
                                    jQuery(this).closest('.vwg-video-wrapper').css(`height`, `${li_height}px`)
                                }

                                // Check if the src attribute includes '/video-wc-gallery-thumb'
                                // {{ ! }}
                                if (src.includes('/video-wc-gallery-thumb')) {
                                    var vwg_video_wrapper = jQuery(this).closest('.vwg-video-wrapper')
                                    if (vwg_video_wrapper.length === 0) {
                                        jQuery(this).wrap(`<div class="vwg-video-wrapper"></div>`);
                                        jQuery(this).closest('.vwg-video-wrapper').append('<i class="<?= esc_html($icon) ?>"></i>');
                                    }
                                    jQuery(this).closest('.vwg-video-wrapper').css(`height`, `${li_height}px`)
                                }
                                // {{ ! }}
                            });
                        });

                    }, 500); // Check every 0.5 seconds

                    // {{ ! }}
                    jQuery(document).on('click touchend', '.vwg-video-wrapper i', function(event) {
                        event.preventDefault();
                        if (event.type === 'touchend' || (event.originalEvent && event.originalEvent.touches)) {
                            jQuery(this).prev().trigger('touchend')
                        } else {
                            jQuery(this).prev().trigger('click');
                        }
                    });
                    // {{ ! }}

                    setInterval(function () {
                        var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent) || /apple/i.test(navigator.vendor);
                        var $activeVideoSlide = jQuery('.woocommerce-product-gallery__image.flex-active-slide .woocommerce-product-gallery__vwg_video')
                        
                        // Pause all inactive videos
                        jQuery('.woocommerce-product-gallery__image').each(function() {
                            var $slide = jQuery(this);
                            var isActive = $slide.hasClass('flex-active-slide');
                            var $video = $slide.find('.woocommerce-product-gallery__vwg_video video');
                            
                            if ($video.length > 0) {
                                var videoId = $video.attr('id');
                                var hasAutoplay = $video.attr('autoplay') !== undefined;
                                var hasControls = $video.hasClass('.vjs-controls-enabled');

                                // When video player is initialized
                                if (typeof videojs !== 'undefined' && videoId) {
                                    var player = videojs(videoId);

                                    // Set user active/inactive state based on slide
                                    if (isActive) {
                                        player.options_.inactivityTimeout = 10000; // 10 seconds
                                        player.userActive(true);
                                    } else {
                                        player.userActive(false);
                                    }

                                    if (!hasControls) {
                                        jQuery($slide).on('click', function() {
                                            if (player.paused()) {  
                                                player.play();
                                            } else {
                                                player.pause();
                                            }
                                        });
                                    } 
    
                                    if (hasAutoplay) {
                                        // User became inactive (vjs-user-inactive class added)
                                        player.on('userinactive', function() {
                                            player.pause();
                                        });
    
                                        // User became active (vjs-user-inactive class removed)
                                        player.on('useractive', function() {
                                            player.play();
                                        });

                                        // Video was paused
                                        // player.on('pause', function() {
                                        //     console.log('Video paused');
                                        // });

                                        // Video started playing
                                        // player.on('play', function() {
                                        //     console.log('Video playing');
                                        // });
                                    }
                                }
                            }
                        });
                        
                        if ($activeVideoSlide.length > 0 ) {
                            var vwg_video_ID = jQuery('.woocommerce-product-gallery__image.flex-active-slide').attr('data-vwg-video')
                            var vwg_video_isAutoPlay = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('autoplay')
                            var vwg_video_loop = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('loop')
                            var vwg_video_pause = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('pause')
                            var vwg_user_pause = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('user_pause')
                            var vwg_controls_enabled = $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).hasClass('.vjs-controls-enabled')
                            if (isSafari && vwg_video_isAutoPlay && !vwg_video_pause ) {
                                var vwgPlayer = videojs(`vwg_video_js_${vwg_video_ID}`);
                                if (vwg_video_loop) {
                                    if(vwg_controls_enabled) {
                                        vwgPlayer.play();
                                    } else {
                                        if (!vwg_user_pause) {
                                            vwgPlayer.play();
                                            // Listen for the 'pause' event to detect when the video is paused
                                            vwgPlayer.on('pause', function () {
                                                vwgPlayer.pause();
                                                var posterUrl = vwgPlayer.poster();
                                                if (posterUrl) {
                                                    var posterStyle = 'url("' + posterUrl + '")';
                                                    vwgPlayer.el().style.display = 'block';
                                                    vwgPlayer.el().style.backgroundImage = posterStyle;
                                                    vwgPlayer.el().style.backgroundSize = 'cover';
                                                    vwgPlayer.el().style.backgroundPosition = 'center';
                                                }
                                                $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('user_pause', 'true');
                                            });
                                        }
                                    }
                                } else {
                                    vwgPlayer.play();
                                    vwgPlayer.on('ended', function () {
                                        vwgPlayer.currentTime(0);
                                        $activeVideoSlide.find(`#vwg_video_js_${vwg_video_ID}`).attr('pause', 'true');
                                    });
                                }
                            }
                            jQuery('.woocommerce-product-gallery__trigger').hide()
                        } else {
                            jQuery('.woocommerce-product-gallery__trigger').show()
                        }
                    }, 500); // Check every 0.5 seconds

                     /**
                     * Add function fix variable product with option video show first
                     *
                     * @since 1.40
                     */
                    <?php if (isset($showFirstClassSettings) && $showFirstClassSettings == 1) : ?>
                    var isFirstLoad = true;
                    $.fn.wc_variations_image_update = function(variation) {
                        var $form             = this,
                            $product          = $form.closest('.product'),
                            $product_gallery  = $product.find('.images'),
                            $gallery_nav      = $product.find('.flex-control-nav'),
                            $gallery_img      = $gallery_nav.find('li:not(:has(div.vwg-video-wrapper)):eq(0) img'),
                            $product_img_wrap = $product_gallery
                                .find('.woocommerce-product-gallery__image:not(.vwg_show_first), .woocommerce-product-gallery__image--placeholder:not(.vwg_show_first)')
                                .eq(0),
                            $product_img      = $product_img_wrap.find('.wp-post-image'),
                            $product_link     = $product_img_wrap.find('a').eq(0);

                        if (variation && variation.image && variation.image.src && variation.image.src.length > 1) {
                            // Update main image
                            $product_img.wc_set_variation_attr('src', variation.image.src);
                            $product_img.wc_set_variation_attr('height', variation.image.src_h);
                            $product_img.wc_set_variation_attr('width', variation.image.src_w);
                            $product_img.wc_set_variation_attr('srcset', variation.image.srcset);
                            $product_img.wc_set_variation_attr('sizes', variation.image.sizes);
                            $product_img.wc_set_variation_attr('title', variation.image.title);
                            $product_img.wc_set_variation_attr('data-caption', variation.image.caption);
                            $product_img.wc_set_variation_attr('alt', variation.image.alt);
                            $product_img.wc_set_variation_attr('data-src', variation.image.full_src);
                            $product_img.wc_set_variation_attr('data-large_image', variation.image.full_src);
                            $product_img.wc_set_variation_attr('data-large_image_width', variation.image.full_src_w);
                            $product_img.wc_set_variation_attr('data-large_image_height', variation.image.full_src_h);
                            $product_img_wrap.wc_set_variation_attr('data-thumb', variation.image.src);
                            $product_link.wc_set_variation_attr('href', variation.image.full_src);
                            $product_img_wrap.addClass('vwg-variation-image-changed');

                            window.setTimeout(function() {
                                // Clear previous executions
                                clearTimeout(window.vwgClickTimeout);
                                
                                var $flexSlider = $('.woocommerce-product-gallery').data('flexslider');
                                if ($flexSlider && $flexSlider.slides) {
                                    var slideIndex = -1;
                                    $($flexSlider.slides).each(function(index) {
                                        if ($(this).hasClass('vwg-variation-image-changed')) {
                                            slideIndex = index;
                                            return false;
                                        }
                                    });
                                    
                                    if (slideIndex >= 0) {
                                        // Activate the variation slide
                                        $flexSlider.flexAnimate(slideIndex, true);
                                    }
                                }
                                
                                // Trigger resize and zoom after processing
                                $(window).trigger('resize');
                                $product_gallery.trigger('woocommerce_gallery_init_zoom');
                            }, 100);
                        } else {
                            $form.wc_variations_image_reset();
                        }
                    };

                    $.fn.wc_variations_image_reset = function() {
                        var $form             = this,
                            $product          = $form.closest('.product'),
                            $product_gallery  = $product.find('.images'),
                            $product_img_wrap = $product_gallery
                                .find('.woocommerce-product-gallery__image:not(.vwg_show_first), .woocommerce-product-gallery__image--placeholder:not(.vwg_show_first)')
                                .eq(0),
                            $product_img      = $product_img_wrap.find('.wp-post-image'),
                            $product_link     = $product_img_wrap.find('a').eq(0);

                        // Reset all variation attributes
                        $product_img.wc_reset_variation_attr('src');
                        $product_img.wc_reset_variation_attr('width');
                        $product_img.wc_reset_variation_attr('height');
                        $product_img.wc_reset_variation_attr('srcset');
                        $product_img.wc_reset_variation_attr('sizes');
                        $product_img.wc_reset_variation_attr('title');
                        $product_img.wc_reset_variation_attr('data-caption');
                        $product_img.wc_reset_variation_attr('alt');
                        $product_img.wc_reset_variation_attr('data-src');
                        $product_img.wc_reset_variation_attr('data-large_image');
                        $product_img.wc_reset_variation_attr('data-large_image_width');
                        $product_img.wc_reset_variation_attr('data-large_image_height');
                        $product_img_wrap.wc_reset_variation_attr('data-thumb');
                        $product_link.wc_reset_variation_attr('href');
                        $product_img_wrap.removeClass('vwg-variation-image-changed');
                    };
                    <?php endif; ?>

                });
            </script>
        <?php endif; ?>

        <script>
            jQuery( document ).ready(function($) {
                // Fix if have problem with first loading classes
                if ( jQuery('.vwg_video_js').attr('autoplay') && !jQuery('.vwg_video_js').hasClass('.vjs-has-started')) {
                    jQuery('.vwg_video_js').addClass('vjs-has-started')
                } else if (!jQuery('.vwg_video_js').attr('autoplay') && !jQuery('.vwg_video_js').hasClass('.vjs-has-started')) {
                    jQuery(document).on('click touchend', '.vwg_video_js .vjs-big-play-button', function(event) {
                        event.preventDefault();
                        jQuery('.vwg_video_js').addClass('vjs-has-started')
                    });
                }
            });
        </script>


        <?php
        global $product;
        $video_url = get_post_meta( $product->get_id(), 'vwg_video_url', true );
        $video_urls = maybe_unserialize($video_url);
        $product_main_image =  wp_get_attachment_image_src($product->get_image_id(), 'woocommerce_single');
        if (is_array($product_main_image)) {
            if (isset($product_main_image[1]) && isset($product_main_image[2])) {
                $width = $product_main_image[1];
                $height = $product_main_image[2];
            }
        }

        if ( $video_url ) {
            $countVideo = 0;
            // {{ ! }}
            foreach ($video_urls as $video) :
                $countVideo++;
                ?>
               <script type="application/ld+json">
                    {
                    "@context": "http://schema.org",
                    "@type": "VideoObject",
                    "name": "<?= esc_attr($product->get_name() . ' Video - ' . esc_attr($countVideo)) ?>",
                    "description": "<?= esc_attr($product->get_short_description()) ?>",
                    "thumbnailUrl": "<?=esc_url($video['video_thumb_url']) ?>",
                    "contentUrl": "<?=esc_url($video['video_url']) ?>",
                    "encodingFormat": "video/mp4",
                    "width": "<?=esc_attr($width) ?>",
                    "height": "<?=esc_attr($height) ?>",
                    "uploadDate": "<?=esc_attr(date('c', strtotime($product->get_date_created()->date('Y-m-d H:i:s')))) ?>",
                    "duration": "PT1M30S"
                }
                </script>
            <?php endforeach;
            // {{ ! }}
        }

    }
}
add_action( 'wp_footer', 'vwg_add_custom_style_and_scripts_product_page' );

/**
 * Add video in product page
 *
 * @since 2.0
 */
function vwg_add_video_to_product_gallery() {
    global $product;

    // Ensure $product is a valid object and initialize if necessary
    if (!is_object($product)) {
        $product = wc_get_product(get_the_ID());
    }

    // Verify that we now have a valid product object
    if (!is_object($product)) {
        return; // Exit the function if $product is still not valid
    }
    
    $video_url = get_post_meta( $product->get_id(), 'vwg_video_url', true );
    $video_urls = maybe_unserialize($video_url);
    // $icon = get_option('vwg_settings_group')['vwg_settings_icon'];
    $controls = get_option('vwg_settings_group')['vwg_settings_video_controls'];
    $loop = get_option('vwg_settings_group')['vwg_settings_loop'];
    $muted = get_option('vwg_settings_group')['vwg_settings_muted'];
    $autoplay = get_option('vwg_settings_group')['vwg_settings_autoplay'];
    $adaptClassSettings = get_option('vwg_settings_group')['vwg_settings_video_adapt_sizes'];
    $showFirstClassSettings = get_option('vwg_settings_group')['vwg_settings_show_first'];
    $product_main_image =  wp_get_attachment_image_src($product->get_image_id(), 'woocommerce_single');

    if (is_array($product_main_image)) {
        if (isset($product_main_image[1]) && isset($product_main_image[2])) {
            $width = $product_main_image[1];
            $height = $product_main_image[2];
        }
    }

    if (isset($adaptClassSettings) && $adaptClassSettings == 1) {
        $adaptClass = '';
    } else {
        $adaptClass = 'vjs-fluid';
    }

    if ( $video_url ) {
        $countVideo = 0;
        $break_rule = vwg_get_video_limit();
        $video_html = '';
        foreach ($video_urls as $video) :
            $countVideo++;
            if ($countVideo > $break_rule) {
                break;
            }
            ob_start();
            ?>
            <div data-thumb="<?=esc_url($video['video_thumb_url']) ?>"
                 data-woocommerce_gallery_thumbnail_url="<?=esc_url((isset($video['woocommerce_gallery_thumbnail_url']))?$video['woocommerce_gallery_thumbnail_url']:'') ?>"
                 data-woocommerce_thumbnail_url="<?=esc_url((isset($video['woocommerce_thumbnail_url']))?$video['woocommerce_thumbnail_url']:'') ?>"
                 data-thumb-alt=""
                 data-vwg-video="<?=esc_attr($countVideo) ?>"
                 class="woocommerce-product-gallery__image <?php echo (isset($showFirstClassSettings) && $showFirstClassSettings == 1)?'vwg_show_first':''; ?>">
                <a href="<?=esc_url($video['video_url']) ?>" class="woocommerce-product-gallery__vwg_video">
                    <video id="vwg_video_js_<?=esc_attr($countVideo) ?>" class="video-js <?=esc_attr($adaptClass) ?> vwg_video_js" width="<?=esc_attr($width) ?>" height="<?=esc_attr($height) ?>" preload="auto" <?=esc_attr($controls) ?> <?=esc_attr($autoplay) ?> <?=esc_attr($loop) ?> <?=esc_attr($muted) ?> playsinline data-setup="{}" poster="<?=esc_url($video['video_thumb_url']) ?>" crossorigin="anonymous">
                        <source src="<?=esc_url($video['video_url']) ?>" type="video/mp4" />
                    </video>
                </a>
            </div>
        <?php
        $video_html .= ob_get_clean();
        endforeach;
        echo apply_filters('vwg_product_gallery_html', $video_html);
    }
}
if (isset($option['vwg_settings_show_first']) && $option['vwg_settings_show_first'] == 1) {
    if (vwg_active_theme_checker() === 'default') {
        add_action( 'vwg_woocommerce_product_thumbnails_first_show', 'vwg_add_video_to_product_gallery', 1 );
    } elseif (vwg_active_theme_checker() === 'Flatsome') {
        add_action( 'vwg_woocommerce_product_thumbnails_first_show_flatsome_theme', 'vwg_add_video_to_product_gallery', 1 );
    }
} else {
    add_action( 'woocommerce_product_thumbnails', 'vwg_add_video_to_product_gallery', 99 );
}


/**
 * Enqueue JS - if theme not support wc-product-gallery-zoom
 *
 * @since 1.39
 */
function vwg_enqueue_overwrite_scripts() {
    // Check if we are on the product page
    if (!is_product()) {
        return;
    }
    
    // Get the current product
    global $product;
    
    // Check if we have a valid product object
    if (!is_object($product)) {
        $product = wc_get_product(get_the_ID());
    }
    
    // If we still don't have a valid product, exit
    if (!is_object($product)) {
        return;
    }
    
    // Check if the product has videos
    $video_url = get_post_meta($product->get_id(), 'vwg_video_url', true);
    
    // Continue only if there is at least one video
    if (!empty($video_url)) {
        wp_dequeue_script('flexslider');
        wp_enqueue_script('vwg-flexslider', VWG_VIDEO_WOO_GALLERY_URL . 'woocommerce-overwrite/assets/js/flexslider/jquery.flexslider.js',  array('jquery'), VWG_VERSION_NUM, true);

        if (!current_theme_supports('wc-product-gallery-zoom')) {
            wp_dequeue_script('wc-single-product');
            wp_enqueue_script('vwg-single-product', VWG_VIDEO_WOO_GALLERY_URL . 'woocommerce-overwrite/assets/js/frontend/single-product.js',  array('jquery'), VWG_VERSION_NUM, true);

            $params = array(
                'i18n_required_rating_text' => esc_attr__( 'Please select a rating', 'woocommerce' ),
                'review_rating_required'    => wc_review_ratings_required() ? 'yes' : 'no',
                'flexslider'                => apply_filters(
                    'woocommerce_single_product_carousel_options',
                    array(
                        'rtl'            => is_rtl(),
                        'animation'      => 'slide',
                        'smoothHeight'   => true,
                        'directionNav'   => false,
                        'controlNav'     => 'thumbnails',
                        'slideshow'      => false,
                        'animationSpeed' => 500,
                        'animationLoop'  => false, // Breaks photoswipe pagination if true.
                        'allowOneSlide'  => false,
                    )
                ),
                'zoom_enabled'              => apply_filters( 'woocommerce_single_product_zoom_enabled', get_theme_support( 'wc-product-gallery-zoom' ) ),
                'zoom_options'              => apply_filters( 'woocommerce_single_product_zoom_options', array() ),
                'photoswipe_enabled'        => apply_filters( 'woocommerce_single_product_photoswipe_enabled', get_theme_support( 'wc-product-gallery-lightbox' ) ),
                'photoswipe_options'        => apply_filters(
                    'woocommerce_single_product_photoswipe_options',
                    array(
                        'shareEl'               => false,
                        'closeOnScroll'         => false,
                        'history'               => false,
                        'hideAnimationDuration' => 0,
                        'showAnimationDuration' => 0,
                    )
                ),
                'flexslider_enabled'        => apply_filters( 'woocommerce_single_product_flexslider_enabled', get_theme_support( 'wc-product-gallery-slider' ) ),
            );

            wp_localize_script( 'vwg-single-product', 'wc_single_product_params', $params );
        }
    }
}
add_action('wp_enqueue_scripts', 'vwg_enqueue_overwrite_scripts', 20);

/**
 * Check if PRO version is active
 * 
 * @since 2.0
 * @return bool
 */
function vwg_is_pro_addon() {
    return apply_filters('vwg_is_pro_addon', false);
}

/**
 * Get count of products with videos
 * 
 * @since 2.1
 * @return int
 */
function vwg_pvc() {
    $p = get_posts(array('post_type' => 'product', 'posts_per_page' => -1, 'fields' => 'ids', 'meta_query' => array(array('key' => 'vwg_video_url', 'compare' => 'EXISTS'))));
    $c = 0;
    if (!empty($p)) {
        foreach ($p as $i) {
            $d = maybe_unserialize(get_post_meta($i, 'vwg_video_url', true));
            if (!empty($d) && is_array($d) && count($d) > 0) $c++;
        }
    }
    return $c;
}

/**
 * @since 2.1
 * @return int
 */
function vwg_pml() {
    return apply_filters('vwg_pml_f', 20);
}

/**
 * 
 * @since 2.0
 * @return int
 */
function vwg_get_video_limit() {
    return apply_filters('vwg_continue_video_loop', 2);
}

Youez - 2016 - github.com/yon3zu
LinuXploit