????

Your IP : 3.140.197.28


Current Path : /home/darkwebsol/rensencorp.com/wp-content/themes/rashy/woocommerce/item-product/
Upload File :
Current File : /home/darkwebsol/rensencorp.com/wp-content/themes/rashy/woocommerce/item-product/inner-full.php

<?php
wp_enqueue_script( 'wc-add-to-cart-variation' )
?>
<div class="woocommerce">
    <div id="product-<?php the_ID(); ?>" <?php post_class('product'); ?>>
        <div id="single-product" class="single-product product-info details-product">
            <div class="single-product-inner">
                <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();

                                    if ( !rashy_get_config( 'enable_shop_catalog' ) ) {
                                        woocommerce_template_single_add_to_cart();
                                    }
                                ?>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>