Hello,
I am seeking help for a custom theme that I use in my gallery. http://treasurecoastphotobooth.com/gallery/
I have been trying to get the zenfblike plugin to work and in the process I managed to mess up my image.php so that now it doesn't load any plugins

The ZENphoto overview page says that I have 10 active plugins:
• deprecated-functions v1.4.1
• flowplayer3 v1.4.1
• security-logger v1.4.1
• tiny_mce v1.4.1
• zenFBComments v1.4.1.1
• zenFBcommon v1.4.1.1
• zenFBLike v1.4.1.1
• zenphoto_news v1.4.1
• zenphoto_sendmail v1.4.1
• zenphoto_seo v1.4.1
and 16 active filters:
• admin_XSRF_access
o 1: security-logger.php => security_logger_admin_XSRF_access
• admin_allow_access
o 1: security-logger.php => security_logger_adminGate
• admin_log_actions
o 1: security-logger.php => security_logger_log_action
• admin_login_attempt
o 1: security-logger.php => security_logger_adminLoginLogger
• admin_managed_albums_access
o 1: security-logger.php => security_logger_adminAlbumGate
• admin_overview
o 0: zenphoto_news.php => printNews
• federated_login_attempt
o 1: security-logger.php => security_logger_federatedLoginLogger
• guest_login_attempt
o 1: security-logger.php => security_logger_guestLoginLogger
• log_setup
o 1: security-logger.php => security_logger_log_setup
• save_user
o 1: security-logger.php => security_logger_UserSave
• sendmail
o 5: zenphoto_sendmail.php => zenphoto_sendmail
• seoFriendly
o 5: zenphoto_seo.php => filterAccentedCharacters
• seoFriendly_js
o 5: zenphoto_seo.php => filterAccentedCharacters_js
• texteditor_config
o 5: tiny_mce.php => tinymceConfigJS
• theme_body_open
o 1: zenFBcommon.php => zenFBcommonJS
• theme_head
o 1: flowplayer3.php => flowplayer2JS
o 1: zenFBcommon.php => zenFBOpenGraphTags
o 9: deprecated-functions.php => _emitPluginScripts
The reason I think it's not loading the plugins is because before I started fooling with the ZenFBSuite I had the flowplayer3 working on the albums that had .flv files and now it doesnt. Also when I check the source code when viewing photos using other themes it has a section in green at the very bottom that tells what zenphoto version and what plugins are loaded like this:
<!-- zenphoto version 1.4.1.6 [8326] (Official Build) THEME: garland (image.php) GRAPHICS LIB: PHP GD library bundled (2.0.34 compatible) { memory: 128M } PLUGINS: deprecated-functions flowplayer3 security-logger tiny_mce zenFBComments zenFBLike zenFBcommon zenphoto_news zenphoto_sendmail zenphoto_seo -->
<!-- Zenphoto script processing end:0.3057 seconds -->
If I check my source code all of that info is missing.
If anyone can tell me what is wrong with my image.php I would be most grateful.
Here is what I have now for my image.php:
<?php
if (!defined('WEBPATH')) die();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php zp_apply_filter('theme_head'); ?>
<title><?php printGalleryTitle(); ?> | <?php echo html_encode(getAlbumTitle()); ?> | <?php echo html_encode(getImageTitle()); ?></title>
<link rel="stylesheet" href="<?php echo $_zp_themeroot ?>/zen.css" type="text/css" />
<?php if(getOption('zp_plugin_colorbox')) { ?>
<script type="text/javascript">
// <!-- <![CDATA[
$(document).ready(function(){
$(".colorbox").colorbox({
inline:true,
href:"#imagemetadata",
close: '<?php echo gettext("close"); ?>'
});
});
// ]]> -->
</script>
<?php } ?>
<?php printRSSHeaderLink('Album',gettext('Gallery RSS')); ?>
</head>
<body class="sidebars">
<?php zp_apply_filter('theme_body_open'); ?>
<div id="navigation"></div>
<div id="wrapper">
<div id="container">
<div id="header">
<div id="logo-floater">
<div>
<h1 class="title"><a>" title="<?php echo gettext('Gallery Index'); ?>"><?php echo html_encode(getGalleryTitle()); ?></a></h1>
</div>
</div>
</div>
<!-- header -->
<div class="sidebar">
<div id="leftsidebar">
<?php include("sidebar.php"); ?>
</div>
</div>
<div id="center">
<div id="squeeze">
<div class="right-corner">
<div class="left-corner">
<!-- begin content -->
<div class="main section" id="main">
<h2 id="gallerytitle">
<a>" title="<?php echo gettext('Gallery Index'); ?>"><?php echo getGalleryTitle();?></a> » <?php printParentBreadcrumb("", " » ", " » "); ?><a>" title="<?php gettext('Album Thumbnails'); ?>"><?php echo html_encode(getAlbumTitle()); ?></a> » <?php printImageTitle(true); ?>
</h2>
<?php printCodeblock(1); ?>
<div id="image_container">
<?php
$fullimage = getFullImageURL();
if (!empty($fullimage)) {
?>
<a>" title="<?php echo getBareImageTitle();?>">
<?php
}
printCustomSizedImage(getImageTitle(), null, 520);
if (!empty($fullimage)) {
?>
</a>
<?php
}
?>
</div>
<?php if (function_exists('printRating')) printRating(); ?>
<?php
if (function_exists('printCommentForm')) {
printCommentForm();
}
?>
<?php printCodeblock(2); ?>
<?php footer(); ?>
<p style="clear: both;"></p>
</div>
<!-- end content -->
<span class="clear"></span> </div>
</div>
</div>
</div>
<div class="sidebar">
<div id="rightsidebar">
<?php
if (hasNextImage()) {
?>
<div id="next" class="slides">
<h2><?php echo gettext('Next »'); ?></h2>
<a>" title="<?php echo gettext('Next image'); ?>"><img src="<?php echo html_encode(getNextImageThumb()); ?>" /></a>
</div>
<?php
}
if (hasPrevImage()) {
?>
<div id="prev" class="slides">
<h2><?php echo gettext('« Previous'); ?></h2>
<a>" title="<?php echo gettext('Previous image'); ?>"><img src="<?php echo html_encode(getPrevImageThumb()); ?>" /></a>
</div>
<?php
}
?>
<p><?php printImageDesc(true); ?></p>
<?php printTags('links', gettext('Tags: '), NULL, ''); ?>
<?php
if (getImageMetaData()) {
?>
<span id="exif_link">
" class="colorbox"><?php echo gettext("Image Info"); ?>
</span>
<span style="display:none">
<?php echo printImageMetadata('', false); ?>
</span>
<br clear="all" />
<?php
}
if (function_exists('hasMapData') && hasMapData()) {
setOption('gmap_display', 'colorbox', false);
?>
<span id="map_link">
<?php printGoogleMap(NULL,NULL,NULL,NULL,'gMapOptionsImage'); ?>
</span>
<br clear="all" />
<?php
}
?>
</div>
</div>
<span class="clear"></span> </div>
<!-- /container -->
</div>
<?php if (function_exists('zenFBLike')) zenFBLike(); ?>
<?php
printAdminToolbox();
zp_apply_filter('theme_body_close');
?>
</body>
</html>
I did have a look at the Theming Tutorial but because i'm not a web designer i dont know what i'm looking at. I see that the Theming Tutorial has a sample image.php that i could maybe get code from to fix my image.php but I dont know what part of it that I need.
Thank you so much for looking at my post!
Scott