How to change header to Current Exhibit?

Hello, I'd like to change the box header from Featured Exhibit to Current Exhibit. If this is possible?

You'd have to make a small hack to a file in the ExhibitBuilder plugin.

Look for the file ExhibitBuilder/helpers/ExhibitFunctions.php, and in there find this line:

$html .= '<h2>' . __('Featured Exhibit') . '</h2>';

change it to

$html .= '<h2>' . __('Current Exhibit') . '</h2>';

Two things to keep in mind:

If you upgrade the plugin, that change will be removed, so you'll want to make a note of the change someplace.

That code actually grabs a random featured exhibit, so if you have more than one exhibit marked as featured, you could get any one of them.