Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,826
    Plugin Contributions
    31

    Default [Done v2.0] Repeated ids in tpl_shopping_cart_default.php

    Hi,

    in

    catalog\includes\templates\template_default\templates\tpl_shopping_cart_default. php

    from line 63-123 the array of products in the cart is output.

    At line 85:
    PHP Code:
    <a href="<?php echo $product['linkProductsName']; ?>"><span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle"><?php echo $product['productsName'] . $product['flagStockCheck']; ?></span></a>
    the id="cartImage" and id="cartProdTitle" are declared and so get repeated for every product in the array. An id should be used only once on a page.

    regards
    Steve

  2. #2
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

    Default Re: [Done v2.0] Repeated ids in tpl_shopping_cart_default.php

    As "cartImage" and "cartProdTitle" are not declared in any CSS file, one only needs to change it from ID to CLASS.

    <span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle">

    becomes

    <span class="cartImage back"><?php echo $product['productsImage']; ?></span><span class="cartProdTitle">


    I know the Thread Title was changed to [Done v2.0] but thought I would mention the specific fix for those that want to correct it now.

  3. #3
    Join Date
    Aug 2007
    Location
    Gijón, Asturias, Spain
    Posts
    2,826
    Plugin Contributions
    31

    Default Re: [Done v2.0] Repeated ids in tpl_shopping_cart_default.php

    Thanks

    Steve

 

 

Similar Threads

  1. where tpl_shopping_cart_default.php called
    By alvalong in forum Contribution-Writing Guidelines
    Replies: 2
    Last Post: 4 Nov 2008, 05:42 AM
  2. fatal error - tpl_shopping_cart_default.php
    By tchambro in forum General Questions
    Replies: 1
    Last Post: 1 Apr 2007, 10:07 PM
  3. Replies: 1
    Last Post: 22 Jan 2007, 09:47 PM
  4. Replies: 0
    Last Post: 4 Jun 2006, 05:17 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