Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2006
    Posts
    12
    Plugin Contributions
    0

    Default [duplicate] HTML Error in tpl_shopping_cart_default.php

    Line 85 reads:

    Code:
    <a href="<?php echo $product['linkProductsName']; ?>"><div id="cartImage" class="back"><?php echo $product['productsImage']; ?></div><div id="cartProdTitle"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></div></a>
    It's invalid HTML to wrap a DIV in an A tag.

    It should probably be:

    Code:
    <div id="cartImage" class="back"><a href="<?php echo $product['linkProductsName']; ?>"><?php echo $product['productsImage']; ?></a></div><div id="cartProdTitle"><a href="<?php echo $product['linkProductsName']; ?>"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></a></div>

  2. #2
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: HTML Error in tpl_shopping_cart_default.php

    I believe this is the same issue reported here:
    http://www.zen-cart.com/forum/showth...009#post283335
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 

Similar Threads

  1. Replies: 1
    Last Post: 28 Jul 2011, 07:43 PM
  2. Replies: 2
    Last Post: 15 Nov 2009, 09:42 AM
  3. where tpl_shopping_cart_default.php called
    By alvalong in forum Contribution-Writing Guidelines
    Replies: 2
    Last Post: 4 Nov 2008, 05:42 AM
  4. fatal error - tpl_shopping_cart_default.php
    By tchambro in forum General Questions
    Replies: 1
    Last Post: 1 Apr 2007, 10:07 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg