I've tried to install and configure the plugin 5 times. I have experience with WP and installing Plug-Ins, so I'm pretty much sure that I did everything that it's supposed to.. Here are the facts:
1 - WP version 2.8.4
2 - Theme - Free AdSensationBlue for WordPress 1.0 by JustDreamweaver
3 - Test URL - http://manteraforma.com/v2
4 - Posts - I have 4 posts, all of them have the "articleimg" custom field, with a valid absolute image URL
5 - I also have the "featuredtext" custom field for each one of them
6 - The individual Post IDs are properly set in the FCG options -> comma separated no spaces
7 - I've pasted the code in my Main Index Template file (index.php), the following way:
- Code: Select all
(...)
<div id="content">
<div class="postwrap">
<?php if (have_posts()) : ?>
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<?php while (have_posts()) : the_post(); ?>
(...)
8 - Even though nothing shows up in the browser (btw I use Firefox 3.5.3), if I look into the page source, I can see that the Featured Gallery code is there, as shown below:
- Code: Select all
<div id="content">
<div class="postwrap">
<div id="featured">
<script type="text/javascript">
function startGallery() {
var myGallery = new gallery($('myGallery'), {
timed: true
});
}
window.addEvent('domready',startGallery);
</script>
<style type="text/css">
.jdGallery .slideInfoZone
{
height: 90px;
}
</style>
<div id="myGallery">
<div class="imageElement">
<h2>Ginástica em casa</h2>
<p>Ginástica em casa bla bla bla</p>
<a href="http://manteraforma.com/v2/2009/09/ginastica-em-casa/" title="Read More" class="open"></a>
<img src="http://manteraforma.com/v2/wp-content/uploads/ginastica-casa.jpg" alt="" class="full" />
<img src="http://manteraforma.com/v2/wp-content/uploads/ginastica-casa.jpg" alt="" class="thumbnail" />
</div>
<div class="imageElement">
<h2>Dietas de Verão são prejudiciais?</h2>
<p>Dietas de verão são prejudiciais? bla bla</p>
<a href="http://manteraforma.com/v2/2009/09/dietas-de-verao-sao-prejudiciais/" title="Read More" class="open"></a>
<img src="http://manteraforma.com/v2/wp-content/uploads/2009/09/bxp136586.jpg" alt="" class="full" />
<img src="http://manteraforma.com/v2/wp-content/uploads/2009/09/bxp136586.jpg" alt="" class="thumbnail" />
</div>
<div class="imageElement">
<h2>O que são esteróides?</h2>
<p>O que são esteroides bla bla bla</p>
<a href="http://manteraforma.com/v2/2009/09/o-que-sao-esteroides/" title="Read More" class="open"></a>
<img src="http://manteraforma.com/v2/wp-content/uploads/body-build.jpg" alt="" class="full" />
<img src="http://manteraforma.com/v2/wp-content/uploads/body-build.jpg" alt="" class="thumbnail" />
</div>
<div class="imageElement">
<h2>Seis passos para ter uma barriga em forma</h2>
<p>Seis passos para ter uma barriga em forma</p>
<a href="http://manteraforma.com/v2/2009/09/seis-passos-para-ter-uma-barriga-em-forma/" title="Read More" class="open"></a>
<img src="http://manteraforma.com/v2/wp-content/uploads/2009/09/bxp136586.jpg" alt="" class="full" />
<img src="http://manteraforma.com/v2/wp-content/uploads/2009/09/bxp136586.jpg" alt="" class="thumbnail" />
</div>
</div>
</div>
9 - I've also tried to see this in IE, and also nothing happens.
10 - I changed the attrib of the featured-content-gallery folder to 777, nothing changed
11 - I tried using the standard WP theme, nothing changed
12 - I tried deactivating all the plugins, and activating only the FCG, nothing changed
Is there something I haven't covered? Is there any hint you can give me?
Thanks a lot
Marcos









