Tiff
Total Posts: 75
Joined: 2008-03-25
Upstate NY
I posted this in another category… think it should really have been here.
Please see my original post: As Lows As… (as posted in “How Do I...” Forum
Thanks for any help!
-Tiffany
NEWBIE
Signature
-Tiffany
A Joyful Affair
Party accessories, favors, & gifts for all occasions.
Posted: March 28 2008
| top
Tweakmag
Total Posts: 277
Joined: 2007-08-31
London, UK
Hi Tiffany,
I will no doubt be writing some code to achieve this myself when v1 is released.
Cheers
Adam
Signature
adam martin: internet consultant / web developer
contact | adam.martin@internetconsultants.com.au | +61 4 3331 3374 | skype adam.j.martin
http://www.tweakmag.com - Tweaking and Customizing The Magento eCommerce Platform
Posted: March 30 2008
| top
| # 1
Tiff
Total Posts: 75
Joined: 2008-03-25
Upstate NY
Adam,
Please let me know when you do.
Signature
-Tiffany
A Joyful Affair
Party accessories, favors, & gifts for all occasions.
Posted: March 31 2008
| top
| # 2
sherrie
Total Posts: 871
Joined: 2007-12-14
Illinois, USA
I’d be interested in this as well.
Signature
Creativity is falling in love with the world. – Dewitt Jones
Current Projects: TECH USA & IHSA State Finals • Currently Running: PHP 5.2.5/MySQL 5.0.45/Magento 1.1.6 on HostGator
Posted: March 31 2008
| top
| # 3
seDev
Total Posts: 47
Joined: 2008-01-22
The 1.0 release seems to have this feature built in when you add a price tier.
It doesn’t apply to tiered prices you may have created in earlier versions though.
Cheers,
Séamus
Posted: April 1 2008
| top
| # 4
sherrie
Total Posts: 871
Joined: 2007-12-14
Illinois, USA
Sweet - I’ll look for that. Thanks!
Signature
Creativity is falling in love with the world. – Dewitt Jones
Current Projects: TECH USA & IHSA State Finals • Currently Running: PHP 5.2.5/MySQL 5.0.45/Magento 1.1.6 on HostGator
Posted: April 1 2008
| top
| # 5
jeanlucb
Total Posts: 60
Joined: 2008-02-10
is there a way to desactivate this feature ?
Posted: April 1 2008
| top
| # 6
sherrie
Total Posts: 871
Joined: 2007-12-14
Illinois, USA
Check the code in app/design/frontend/default/default/template/catalog/product/view pages ... there are several with pricing and tier pricing ... I would take a guess at which one it is, comment it out and see if it works.
Signature
Creativity is falling in love with the world. – Dewitt Jones
Current Projects: TECH USA & IHSA State Finals • Currently Running: PHP 5.2.5/MySQL 5.0.45/Magento 1.1.6 on HostGator
Posted: April 11 2008
| top
| # 7
jeanlucb
Total Posts: 60
Joined: 2008-02-10
Found in app\design\frontend\default\default\template\catalog\product\price.phtml
comments the last block of code:
<!-- Remove As Low As
<?php if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): ?>
<span class="minimal-price">
<span class="label"><?php echo $this->__('As low as:') ?></span>
<span class="price" id="product-minimal-price-<?php echo $_id ?>">
<?php echo Mage::helper('core')->currency($_minimalPrice) ?>
</span>
</span>
<br/>
<?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>
-->
Posted: April 15 2008
| top
| # 8
Tiff
Total Posts: 75
Joined: 2008-03-25
Upstate NY
My “As Low As...” shows up on the category’s product list sometimes and not other times. I’m not sure why it would stop working and then suddenly reappear again at another time. Caching issues, maybe?
It shows up once in the product detail page, just not on the category’s list.
Someone told me I have to put my highest price (special price) in as a tier as well, but that seems redundant since that price is already listed! He thinks that’s the reason it doesn’t show up.
Any ideas?
Signature
-Tiffany
A Joyful Affair
Party accessories, favors, & gifts for all occasions.
Posted: May 4 2008
| top
| # 9
jeanlucb
Total Posts: 60
Joined: 2008-02-10
it was doing the same thing to me…
as soon as i edit the product, or the category, the As low As stopped displaying !
I don’t know why… anyway, I removed it…
blank1
Total Posts: 16
Joined: 2008-05-16
jeanlucb,
Thanks for your post. I had a product where the tier pricing was removed and saved but still showed “As Low As:” which I couldn’t figure out why… (not caching) Anyway, I’ve just coded that out. Not that I want an even more bloated Magento, but a template engine like Smarty can certainly ease the editing of php directly in code…
Signature
- Mike
Melbourne, Australia
Tiff
Total Posts: 75
Joined: 2008-03-25
Upstate NY
Does anyone have anything new to add? I am still having this problem and I really need the As Low As to display!! My customers are seeing too high of a price and need to know there’s volume discounts.
Signature
-Tiffany
A Joyful Affair
Party accessories, favors, & gifts for all occasions.
_Lobo_
Total Posts: 31
Joined: 2008-04-10
jeanlucb - 15 April 2008 10:54 AM
Found in app\design\frontend\default\default\template\catalog\product\price.phtml
comments the last block of code:
<!-- Remove As Low As
<?php if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): ?>
<span class="minimal-price">
<span class="label"><?php echo $this->__('As low as:') ?></span>
<span class="price" id="product-minimal-price-<?php echo $_id ?>">
<?php echo Mage::helper('core')->currency($_minimalPrice) ?>
</span>
</span>
<br/>
<?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>
-->
Thank you for this! it help but anybody find a solution for this BUG? that piece of code is conect to DB can we manualy update that table?