Results 1 to 5 of 5
  1. #1
    Join Date
    May 2010
    Location
    Cyberspace
    Posts
    376
    Plugin Contributions
    0

    Default shoppingCartSidebox

    Hello everyone. I'm trying to build a B2B site. The no. of items for each order will generally be large. So, the shoppingCartSidebox will generally display a long sequence of items (almost not manageable at ten items or more). Is there any way of limiting the number of cart items to the five most recent items or similar?
    The shoppingCart sort of drops like my jaw.

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: shoppingCartSidebox

    In /includes/templates/your_template/sideboxes/tpl_shopping_cart.php, find this near the top
    PHP Code:
        $products $_SESSION['cart']->get_products();
        for (
    $i=0$n=sizeof($products); $i<$n$i++) {
          
    $content .= '<li>'
    and change it to this
    PHP Code:
        $products $_SESSION['cart']->get_products();
        for (
    $i=($n>5$n-50), $n=sizeof($products); $i<$n$i++) {
          
    $content .= '<li>'
    If there are more than 5 products in the cart, this will show only the last 5.

  3. #3
    Join Date
    May 2010
    Location
    Cyberspace
    Posts
    376
    Plugin Contributions
    0

    Default Re: shoppingCartSidebox

    Thank you, Sir.

  4. #4
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: shoppingCartSidebox

    You might want to add some text to the cart sidebox to let people know that only the most recent items are shown, and the older ones are still in the cart and can be seen on the shopping cart page.

  5. #5
    Join Date
    May 2010
    Location
    Cyberspace
    Posts
    376
    Plugin Contributions
    0

    Default Re: shoppingCartSidebox

    That's a smart suggestion. I wish my head wasn't upside down.

 

 

Similar Threads

  1. shoppingCartSidebox
    By Soniccc in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 4 Oct 2011, 02:22 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR