HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/woocommerce/content-product-quickview.php
<div class="woocommerce">
    <div id="product-<?php the_ID(); ?>" <?php post_class('product'); ?>>
    	<div id="single-product" class="product-info details-product">
    		<div class="row">
    			<div class="col-lg-6 col-md-6 col-sm-12 gallery-wrapper">
                    <div class="wrapper-img-main">
        				<?php
        					/**
        					 * woocommerce_before_single_product_summary hook
        					 *
        					 * @hooked woocommerce_show_product_sale_flash - 10
        					 * @hooked woocommerce_show_product_images - 20
        					 */
        					//do_action( 'woocommerce_before_single_product_summary' );
        					wc_get_template( 'single-product/product-image-carousel.php' );
        				?>
                    </div>
    			</div>
    			<div class="col-lg-6 col-md-6 col-sm-12">
                    <div class="information-wrapper">
                        <div class="information">
                        <?php
                            /**
                            * woocommerce_single_product_summary hook
                            *
                            * @hooked woocommerce_template_single_title - 5
                            * @hooked woocommerce_template_single_rating - 10
                            * @hooked woocommerce_template_single_price - 10
                            * @hooked woocommerce_template_single_excerpt - 20
                            * @hooked woocommerce_template_single_add_to_cart - 30
                            * @hooked woocommerce_template_single_meta - 40
                            * @hooked woocommerce_template_single_sharing - 50
                            */
                            echo '<div class="top-info-detail clearfix">';
                            woocommerce_template_single_title();
                            woocommerce_template_single_price();
                            woocommerce_template_single_rating();
                            echo '</div>';
                            woocommerce_template_single_excerpt();

                            woocommerce_template_single_add_to_cart();
                            echo '<div class="clearfix"></div>';
                            woocommerce_template_single_meta();
                            if ( voiture_get_config('show_product_social_share') ) {
                                get_template_part( 'template-parts/sharebox' );
                            }
                            ?>
                        </div>
                    </div>
    			</div>
    		</div>
    	</div>
    </div>
</div>