> For the complete documentation index, see [llms.txt](https://help.tahua.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.tahua.io/product-news/2026/readme/add-overridable-view-landing-page-button-text-per-funding-round.md).

# Add overridable view landing page button text per funding round

## Problem

The "View \[Funding Round Term]" button on the applicant dashboard always uses the organisation's default funding round terminology. Some organisations need different button text for specific rounds to better describe what the applicant is viewing.

## How it works

Each funding round now has an optional `view_landing_page_button_text` field. When set, this text replaces the default "View \[Funding Round Term]" label on the applicant dashboard round card.

* **Default behaviour**: If no custom text is set, the button continues to display "View \[Funding Round Term]" using the organisation's terminology.
* **Custom text**: When a value is provided, it is used as the button label instead.

The custom text can be set via the Rails console:

```ruby
funding_round.update(view_landing_page_button_text: "Custom Button Text")
```
