| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template variables: |
| 4 |
* |
| 5 |
* @var $controllers array Widgets/Addons Settings |
| 6 |
*/ |
| 7 |
|
| 8 |
// Do not allow directly accessing this file. |
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit( 'This script cannot be accessed directly.' ); |
| 11 |
} |
| 12 |
$wrapper_class = ! empty( $controllers['fields_width_100'] ) ? 'rtsb-form-fields-width-100' : ''; |
| 13 |
?> |
| 14 |
<div class="rtsb-form-billing <?php echo esc_attr( $wrapper_class ); ?>"> |
| 15 |
<?php |
| 16 |
wc_get_template( |
| 17 |
'checkout/form-billing.php', |
| 18 |
[ |
| 19 |
'checkout' => WC()->checkout(), |
| 20 |
] |
| 21 |
); |
| 22 |
?> |
| 23 |
</div> |
| 24 |
|
| 25 |
|