# shopbuilder/2.2.0/templates/elementor/checkout/billing-form.php

ShopBuilder – WooCommerce Builder For Elementor, version 2.2.0. 25 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/2.2.0/code/templates/elementor/checkout/billing-form.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/2.2.0/raw/templates/elementor/checkout/billing-form.php
- Modified: 2024-08-12T05:53:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/2.2.0/code/templates/elementor/checkout/billing-form.php#L10-L20`.

```php
<?php
/**
 * Template variables:
 *
 * @var $controllers  array Widgets/Addons Settings
 */

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}
$wrapper_class = ! empty( $controllers['fields_width_100'] ) ? 'rtsb-form-fields-width-100' : '';
?>
<div class="rtsb-form-billing <?php echo esc_attr( $wrapper_class ); ?>">
	<?php
		wc_get_template(
			'checkout/form-billing.php',
			[
				'checkout' => WC()->checkout(),
			]
		);
		?>
</div>


```
