I'm using the product_list item to display my products but when I preview the page, nothing shows up. I've even went as far as to enable all the items for the page and still nothing. I tried the other item tag product_display and that shows up.
My code is below. Any help is appreciated.
My code is below. Any help is appreciated.
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <base href="&mvt:global:basehref;"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>&mvt:store:name;</title> <base href="&mvt:global:basehref;"> <mvt:item name="head" /> <meta name="description" content="" /> <link href="styles/reset.css" rel="stylesheet" type="text/css" media="screen" /> <link href="styles/basic.css" rel="stylesheet" type="text/css" media="screen" /> </head> <mvt:item name="body"> <div id="global"> <div id="page"> <div id="masthead"> <a href="index.php"><img src="graphics/idensure/logo_temp.gif" width="284" height="65" alt="IDEnsure" title="IDEnsure" /></a> <p id="phone-support"><span>1-866-123-4567</span><br />24 Hour Phone Support </p> </div><!--End Masthead--> <div id="nav"> <ul> <li><a href="index.php">Home</a></li> <li><a href="services.php">Services</a></li> <li><a href="http://www.idensure.com/store/">Enroll Now</a></li> <li><a href="resources.php">Resources</a></li> <li><a href="frequently-asked-questions.php">FAQ</a></li> <li><a href="about-us.php">About Us</a></li> <li><a href="contact-us.php">Contact Us</a></li> </ul> </div><!--End Nav DIV--> <div id="content"> <mvt:item name="product_display" /> <mvt:item name="product_list" /> </div><!--End Content DIV--> </div><!--End Page DIV--> <div id="footer"> <ul> <li><a href="#">Privacy Policy</a> | </li> <li><a href="#">Terms of Use</a> | </li> <li><a href="#">Sitemap</a></li> </ul> </div><!--End Footer DIV--> </div><!--End Global DIV--> </mvt:item> </html>
Comment