Hello. This is in regard to the sidebar on HawaiiHousingNews.com. Right below "Subscribe to Our Feed via RSS" there should also be "Subscribe via EMail" but it's not showing. I can generally follow code but I'm not good with PHP or CSS syntax. Here are the only two PHP files that should be relevant (I think), subscribe.php and sidebar.php. Your help is greatly appreciated:
subscribe.php:
<div id="pp-subscribe" class="clearfix<?php if ($pp_feed_id) echo ' pp-email-true'; ?>" style="border-top:1px solid #ccc">
<ul class="clearfix">
<li id="pp-feed">
<a>" title="Subscribe to This Feed via RSS">Subscribe <span class="email-narrow">to Our Feed</span> via RSS</a>
<?php if ($pp_feed_id) { ?>
<!--<li id="pp-email">
<a href="http://feedburner.google.com/fb/a/mailverify?uri=HawaiiHousingNews&loc=en_US" title="Subscribe via Email">Subscribe via eMail</a>
-->
<?php } ?>
</div>
sidebar.php:
<?php if (is_home()) { ?>
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
else { $$value['id'] = get_settings( $value['id'] ); }
} ?>
<div id="secondary">
<div id="pp-subscribe" class="clearfix<?php if ($pp_feed_id) echo ' pp-email-true'; ?>" style="text-align:center; padding:12px 0">
<object width="330" height="240">
<param name="movie" value="<?php include(TEMPLATEPATH . '/video.php'); ?>&autoplay=1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="<?php include(TEMPLATEPATH . '/video.php'); ?>&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="330" height="240" autostart="true"></embed>
</object>
</div>
<?php include (TEMPLATEPATH . '/subscribe.php'); ?>
</div><!--#secondary-->
<?php } else {?>
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
else { $$value['id'] = get_settings( $value['id'] ); }
} ?>
<div id="secondary">
<?php } ?>