Results 1 to 7 of 7

Hybrid View

  1. #1
    Join Date
    Sep 2007
    Posts
    11
    Plugin Contributions
    0

    Default Question about modifyng model, price etc

    Where can I edit the following information? I want to remove it completely from the cart but I've sorted through a few hundred of the scripts and can't find it. I see where its pulling the information from the database, but don't know where the actual script is located. Anyone have any idea's?

    I'm basically setting up my cart where they can choose 5-10 different packages, its a bulk site, then the customer can pick and choose from 700 different titles. I've got most of that done, but need to know how to take everything off, pricing etc.

    Thanks

    Model:
    Price:

    Weight: 0lbs

    Date Added: Monday 01 October, 2007

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Question about modifyng model, price etc

    admin > catalog > product types > general > at the right edit layout > several settings

  3. #3
    Join Date
    Sep 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Question about modifyng model, price etc

    What version are you talking about? This isn't the latest...

  4. #4
    Join Date
    Sep 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Question about modifyng model, price etc

    I'm trying to figure out where it prints the stock etc on the site itself. Its not in a stylesheet, I'll have to remove it from the code itself...

  5. #5
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Question about modifyng model, price etc

    Kinda hard to tell you exactly "where" when you won't tell us which version you're using.

    From the latest version:
    tpl_product_info_display

    Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
      <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT .  $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>'  : '') . "\n"; ?>
      <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>'  : '') . "\n"; ?>
      <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <br class="clearBoth" />
    <?php
      }
    ?>
    <!--eof Product details list -->
    .

    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.

  6. #6
    Join Date
    Sep 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Question about modifyng model, price etc

    Found it here

    includes/templates/template_default/templates/tpl_modules_products_all_listing


    Now onto the final touch.

  7. #7
    Join Date
    Sep 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Question about modifyng model, price etc

    I'm using the latest but when I tried to go where he said it wasn't there. Figured it out before I read your post. Thank you :)

 

 

Similar Threads

  1. v154 question about product price manager
    By kevin_remy in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 25 Dec 2015, 07:40 AM
  2. Question about the differnet image sizes in filenames SMALL MED etc
    By creamcrackers in forum General Questions
    Replies: 10
    Last Post: 16 Jul 2012, 03:22 PM
  3. Question about SSL, Godaddy hosting etc.
    By musicfreer in forum General Questions
    Replies: 5
    Last Post: 28 Jul 2008, 06:01 AM
  4. A question about Page_2 etc
    By ginginca in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 14 Dec 2006, 11: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