> 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="/files/c0TdDW0JYAK9MKpFhoVH" 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 ''; } );
```
