> For the complete documentation index, see [llms.txt](https://ovatheme.gitbook.io/brw/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ovatheme.gitbook.io/brw/customize-rental-type/by-tour.md).

# By: Tour

### 1: Configuration

The values used to display the corresponding fields in the product backend. You can find other fields in [General Settings](/brw/create-a-product/general-settings.md)

<figure><img src="/files/O6pUmrVYtiMfTi7EWSFk" alt=""><figcaption></figcaption></figure>

### 2: Delete Fields&#x20;

if you want to **delete some fields** in product backend like: "**advanced options"**

You can addl bellow code to functions.php file in theme or child theme,

You can delete or comment out the corresponding values ​​for the fields as shown below:

```
add_filter( 'ovabrw_rental_tour_get_meta_fields', 'ovabrw_rental_tour_get_meta_fields_customize' );
function ovabrw_rental_tour_get_meta_fields_customize(){
	return [
				'rental-type',
				'tour-duration',
				'tour-specific-time',
				'tour-discounts',
				'tour-guests',
				'deposit',
				'specifications',
				'features',
				'tour-services',
				'allowed-dates',
				'disabled-dates',
				'map',
				'sync-calendar',
				// 'advanced-start',
				// 'product-templates',
				// 'booking-conditions',
				// 'custom-checkout-fields',
				// 'pickup-date',
				// 'dropoff-date',
				// 'guest-options',
				// 'extra-tab',
				// 'price-format',
				// 'frontend-order',
				// 'advanced-end'
			];
}
```

Bellow image of product after delete fields:

<figure><img src="/files/iN9ut5fo9g2fG1L2RisQ" alt=""><figcaption></figcaption></figure>
