> 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-day.md).

# By Day

### 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/BAuvIePqJeZ5iXasCji8" alt=""><figcaption></figcaption></figure>

### 2: Delete Fields

**Example:**&#x20;

If you want to D**elete some fields** in product backend like: "locations, specifications, features, map, sync-calendar, extra-ta&#x62;**"**,&#x20;

You can **Add 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:

Note: You can't delete some values: rental-type, price-day

```
add_filter( 'ovabrw_rental_day_get_meta_fields', 'ovabrw_rental_day_get_meta_fields_customize' );
function ovabrw_rental_day_get_meta_fields_customize(){
	return [
				'rental-type',
				'price-day',
				'define-day',
				'insurance',
				'deposit',
				'inventory',
				'guests-fields',
				'daily-price',
				// 'locations',
				'location-surcharge',
				// 'specifications',
				// 'features',
				'discounts',
				'special-times',
				'resources',
				'services',
				'allowed-dates',
				'disabled-dates',
				// 'map',
				// 'sync-calendar',
				'advanced-start',
				'product-templates',
				'booking-conditions',
				'custom-checkout-fields',
				'show-quantity',
				'pickup-date',
				'dropoff-date',
				'pickup-location',
				'dropoff-location',
				'guest-options',
				// 'extra-tab',
				'price-format',
				'frontend-order',
				'advanced-end'
			];
}
```

Bellow image of product after delete fields:

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