Zen Cart Logo
Forums / General Questions / Question about modifyng model, price etc

Question about modifyng model, price etc

Locked

Views: 1,114

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
10 Oct 2007, 5:23 AM
#1
deadmn123 avatar

deadmn123

New Zenner

Join Date:
Sep 2007
Posts:
11
Plugin Contributions:
0

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

10 Oct 2007, 6:37 AM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Question about modifyng model, price etc

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

10 Oct 2007, 7:15 AM
#3
deadmn123 avatar

deadmn123

New Zenner

Join Date:
Sep 2007
Posts:
11
Plugin Contributions:
0

Re: Question about modifyng model, price etc

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

10 Oct 2007, 7:22 AM
#4
deadmn123 avatar

deadmn123

New Zenner

Join Date:
Sep 2007
Posts:
11
Plugin Contributions:
0

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...

10 Oct 2007, 7:32 AM
#5
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

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

<!--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 -->
10 Oct 2007, 8:07 AM
#6
deadmn123 avatar

deadmn123

New Zenner

Join Date:
Sep 2007
Posts:
11
Plugin Contributions:
0

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.

10 Oct 2007, 8:08 AM
#7
deadmn123 avatar

deadmn123

New Zenner

Join Date:
Sep 2007
Posts:
11
Plugin Contributions:
0

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 :)