thefoff 0 Report post Posted October 17, 2009 The feature rotation disappeared from the front page: http://www.6riversretreat.com The features and html are all still the same on the backend (from when it was working). I'm reluctant to reset everything to the defaults for fear of losing all of the work I did to create the page. Only the first item in the rotation is appearing, the other 4 items are not. Share this post Link to post Share on other sites
thefoff 0 Report post Posted October 17, 2009 I reset it to the defaults, and not only did I lose everything I worked on, but the page is worse than it was before with the image from feature one showing in the correct location, but the image from feature 2 is showing overlayed on another portion of the page and the rotation still is not working. I really need help with this. The site was supposed to go live today. Share this post Link to post Share on other sites
Andrew 207 Report post Posted October 17, 2009 Sorry about the problem, this issue is probably related to one of two things either: A plugin incompatibilityA markup issue in the feature HTML or elsewhere I'd say this resolves 90% of the problems getting the feature working correctly. Share this post Link to post Share on other sites
thefoff 0 Report post Posted October 17, 2009 I deactivated the non-theme plugins one by one to see if that helped, and it did not. I don't have a clue how to fix a markup issue or even where to look for it. Resetting it to the defaults did not fix the problem. Share this post Link to post Share on other sites
thefoff 0 Report post Posted October 17, 2009 is it somewhere in here (feature.php)? <?php get_header(); ?> <div id="feature" class="fix"> <div id="cycle"> <?php foreach(pagepress('features') as $feature):?> <?php if(!empty($feature['text']) || !empty($feature['media'])):?> <div id="<?php echo $feature['name'];?>" class="thefeature" style="background: none;"> <div class="fcontent"> <div class="fheading"> <?php echo $feature['title'];?> </div> <div class="ftext"> <?php echo $feature['text'];?> <?php if($feature['link']):?> <p>"> </p> <?php endif;?> </div> </div> <div class="fmedia"> <?php echo $feature['media'];?> </div> <div class="clear"></div> </div> <?php endif?> <?php endforeach;?> </div> <div id="featurenav"></div> <div class="clear"></div> </div> <div class="clear"></div> <div class="fboxes fix"> <div class="fboxdividers fix"> <?php foreach(pagepress('fboxes') as $fbox):?> <div class="fbox"> <div class="fboxcopy"> <div class="fboxtitle"><?php echo $fbox['title'];?></div> <div class="fboxtext"><?php echo $fbox['text'];?></div> </div> </div> <?php endforeach;?> </div> </div> <div class="clear"></div> <?php get_footer(); ?> Share this post Link to post Share on other sites
thefoff 0 Report post Posted October 17, 2009 It suddenly started working again. Not sure what happened or why. Share this post Link to post Share on other sites
thefoff 0 Report post Posted October 17, 2009 It would be good to add the ability to change the order of the features when you're working on the next update. Share this post Link to post Share on other sites
Andrew 207 Report post Posted October 18, 2009 Thanks, good idea. We'll see if its a possibility. Share this post Link to post Share on other sites