If anyone is familiar with wordpress and the plugin shopp I am having an issue and no one on any other forum can seem to help me. I am running the plugin shopplugin which is a shopping cart. I want to the featured product to show up on the index page really big. I have tried a few variations of code and nothing seems to be working, I am not a WP expert, I just know a few things.
Here is the code on the index page:
<?php get_header(); ?>
<div id="container">
<div id="content" role="main">
<h1 class="page-title">Latest Album: </h1>
<div id="shop">
<?php if (shopp('product','isfeatured')): ?>
<?php while(shopp('category','products')): ?>
<a href="<?php shopp('product','url'); ?>"><?php shopp('product','coverimage','size=800&fit=crop&quality=75'); ?></a>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
If anyone knows what I am doing wrong a point in the correct direction would be awesome! thanks!