| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- if (!defined('WPINC')) {
- die;
- }
- /** @var WC_Product_Variable $product */
- /** @var int $max_file_size */
- $product_id = $product->get_id();
- ?>
- <div class="studiou-fpp-product">
- <div class="studiou-fpp-product-header">
- <?php if ($product->get_image_id()) : ?>
- <div class="studiou-fpp-product-image">
- <?php echo $product->get_image('woocommerce_thumbnail'); ?>
- </div>
- <?php endif; ?>
- <div class="studiou-fpp-product-info">
- <h2 class="studiou-fpp-product-title"><?php echo esc_html($product->get_name()); ?></h2>
- <?php if ($product->get_short_description()) : ?>
- <div class="studiou-fpp-product-description">
- <?php echo wp_kses_post($product->get_short_description()); ?>
- </div>
- <?php endif; ?>
- </div>
- </div>
- <?php
- // Render WooCommerce native product form (includes variation selectors + add to cart)
- // The upload area is injected via woocommerce_before_add_to_cart_button hook
- ?>
- <div class="studiou-fpp-section">
- <?php woocommerce_variable_add_to_cart(); ?>
- </div>
- </div>
|