I watched the video and did each step correctly. I created 4 posts with the custom fields, articleimg, featuredtext, and thumbnailimg. I checked to make sure the images were working in a browser.
The code <?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?> is in the home.php file, which is where it was in the theme already. I removed all the "if" statements around it.
ORIGINAL CODE:
<?php get_header(); ?>
<div id="content">
<div id="homepage">
<?php /*Check for the 'gallery_styles' function. if it's there, then include it. If not, do nothing*/ ?>
<?php if (function_exists('gallery_styles')) : ?>
<div id="homepagetop">
<div class="featuredtop">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?> </div>
</div>
<?php endif; ?>
CURRENT CODE:
<?php get_header(); ?>
<div id="content">
<div id="homepage">
<div id="homepagetop">
<div class="featuredtop">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
</div>
</div>
I disabled all plugins except the FCG, Akismet, and the GBCF contact form. I originally deactivated Akismet and the contact form but that didn't help, so I reactivated them.
I activated the Default theme and put the FCG code in the sidebar. It didn't work. I ended up with a clear box with a black border.
What else is there? Is it my host? The host is Bluehost, if that helps.









