70 lines
2.3 KiB
PHP
70 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Variable product add to cart - radio inputs
|
|
*
|
|
* Original WC template version: 3.4.1
|
|
*
|
|
* @version 3.7.0
|
|
* @since 2.4.8
|
|
* @author Algoritmika Ltd.
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
global $product;
|
|
|
|
$attribute_keys = array_keys( $attributes );
|
|
|
|
do_action( 'woocommerce_before_add_to_cart_form' ); ?>
|
|
|
|
<form class="variations_form cart" action="<?php echo esc_url( apply_filters( 'woocommerce_add_to_cart_form_action', $product->get_permalink() ) ); ?>" method="post" enctype='multipart/form-data' data-product_id="<?php echo absint( wcj_get_product_id( $product ) ); ?>" data-product_variations="<?php echo htmlspecialchars( wp_json_encode( $available_variations ) ); // WPCS: XSS ok. ?>">
|
|
<?php do_action( 'woocommerce_before_variations_form' ); ?>
|
|
|
|
<?php if ( empty( $available_variations ) && false !== $available_variations ) : ?>
|
|
<p class="stock out-of-stock"><?php esc_html_e( 'This product is currently out of stock and unavailable.', 'woocommerce' ); ?></p>
|
|
<?php else : ?>
|
|
<table class="" cellspacing="0">
|
|
<tbody>
|
|
<?php foreach ( $available_variations as $variation ) : ?>
|
|
<tr>
|
|
<?php wcj_variation_radio_button( $product, $variation ); ?>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php
|
|
foreach ( $product->get_attributes() as $attribute_name => $options ) {
|
|
echo '<input type="hidden" name="attribute_' . $attribute_name . '" value="">';
|
|
}
|
|
?>
|
|
|
|
<div class="single_variation_wrap">
|
|
<?php
|
|
/**
|
|
* Hook: woocommerce_before_single_variation.
|
|
*/
|
|
do_action( 'woocommerce_before_single_variation' );
|
|
|
|
/**
|
|
* Hook: woocommerce_single_variation. Used to output the cart button and placeholder for variation data.
|
|
*
|
|
* @since 2.4.0
|
|
* @hooked woocommerce_single_variation - 10 Empty div for variation data.
|
|
* @hooked woocommerce_single_variation_add_to_cart_button - 20 Qty and cart button.
|
|
*/
|
|
do_action( 'woocommerce_single_variation' );
|
|
|
|
/**
|
|
* Hook: woocommerce_after_single_variation.
|
|
*/
|
|
do_action( 'woocommerce_after_single_variation' );
|
|
?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'woocommerce_after_variations_form' ); ?>
|
|
</form>
|
|
|
|
<?php
|
|
do_action( 'woocommerce_after_add_to_cart_form' );
|