Okay, so I opened the summary.php file in a text editor. I added the line of text you sent to me (see above) and I inserted the text in the file, just before the line to add the footer. Then I saved it and uploaded it to the same directory/folder. I renamed the old file and named the edited/uploaded version to be summary.php. Then I clicked on “Reload” to ensure that the folder recognized the change. Then I went back to reload my website, and it doesn’t appear to have changed.
Here is what the edited summary.php file looks like with the added line of code.
<?php echo head(array('title' => metadata('exhibit', 'title'), 'bodyclass'=>'exhibits summary')); ?>
<?php echo metadata('exhibit', 'title'); ?>
<?php echo exhibit_builder_page_nav(); ?>
<?php if ($exhibitDescription = metadata('exhibit', 'description', array('no_escape' => true))): ?>
<?php echo $exhibitDescription; ?>
<?php endif; ?>
<?php if (($exhibitCredits = metadata('exhibit', 'credits'))): ?>
<?php echo __('Credits'); ?>
<?php echo $exhibitCredits; ?>
<?php endif; ?>
<?php
$pageTree = exhibit_builder_page_tree();
if ($pageTree):
?>
<?php echo $pageTree; ?>
<?php endif; ?>
<?php echo record_image('exhibit'); ?>
<?php echo foot(); ?>
So you can see that I added the line of code as the second from last line - ie, just before the footer.
Any thoughts on why this did work? Do I need to do some other “compilation” step to make the system see that line? Or is the new line of code in the wrong place?