Exhibit Theme Not Displaying Page Titles after 1.3 Upgrade

Hi Everyone,

We upgraded to 1.3 and thanks to the excellent instructions in the codex, had no trouble moving our exhibit theme into the public theme folder. However, the one hiccup is that now, none of the pages in my exhibit display a title.

I'm know its something in the show.php file, and I'm pretty sure its in here (highlighted in bold):

<?php head(array('bodyclass' => 'exhibits')); ?>
<div id="primary">
<h2><?php echo html_escape($page->title); ?></h2>

<div id="previous-next-nav">
<div class="previous"><?php echo exhibit_builder_link_to_previous_exhibit_page(); ?></div>
<div class="next"><?php echo exhibit_builder_link_to_next_exhibit_page(); ?></div>
</div>

But I'm just not quite sure what I need to change. I'm not great at php, but if someone can easily see the error and could give me a heads up, that would be great.

Cheers!

Heather

Apparently I didn't bold the <h2> line correctly, but hopefully you see what I mean...

Try replacing your bolded line with this:

<h2><?php echo exhibit_page('title'); ?></h2>

That did the trick!

Thank You!!!