ACF: Echo page title when checkbox is checked

You would like to use ACF true/false field > link

Then basically in your template wrap the title element in conditional, like this:

if( get_field( 'title_show_or_whatever' ) ) {
    // The title element
}

tech