> 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/faqs/remove-price-in-calendar.md).

# Remove price in calendar

<figure><img src="https://4082525133-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fa2OkFafBNY1uvQO4naAL%2Fuploads%2FsTf9ZPrP8ler9rQwluZ7%2FScreenshot%202025-05-16%20at%2010.50.34.png?alt=media&amp;token=086aefa8-eeef-40b8-a914-cae4613bc68a" alt=""><figcaption></figcaption></figure>

If you want to remove price in calendar, you can add bellow code to functions.php file in theme or child theme

```
add_filter( 'ovabrw_get_calendar_price_html', function($price){ return ''; } );
```
