block.json
4 months ago
bundle.php
1 week ago
controller.php
1 month ago
index.asset.php
1 year ago
index.js
1 year ago
radio.php
1 month ago
select.php
1 month ago
style-index-rtl.css
1 month ago
style-index.css
1 month ago
view.php
4 months ago
view.php
16 lines
| 1 | <?php foreach ( $product->variant_options->data as $key => $option ) : ?> |
| 2 | <div |
| 3 | <?php echo wp_kses_data( get_block_wrapper_attributes() ); ?> |
| 4 | <?php echo wp_kses_data( wp_interactivity_data_wp_context( array( 'optionNumber' => (int) $key + 1 ) ) ); ?> |
| 5 | data-wp-interactive='{ "namespace": "surecart/product-page" }' |
| 6 | > |
| 7 | <?php |
| 8 | if ( 'dropdown' === $option->display_type ) : |
| 9 | include 'select.php'; |
| 10 | else : |
| 11 | include 'radio.php'; |
| 12 | endif; |
| 13 | ?> |
| 14 | </div> |
| 15 | <?php endforeach; ?> |
| 16 |