Page 1 of 1

Hide minimum bid entirely

PostPosted: Sun Jul 27, 2008 3:56 pm
by lobsterman
A previous post shows how to hide the minimum bid unless it has been met. How might I hide the minimum bid entirely. I want to tell bidders on some items that there is a minimum bid but not display it.

PostPosted: Mon Jul 28, 2008 4:05 pm
by shannah
This would be a fairly simple change. The product details view template is located at templates/view_product.html

Just make changes to this template to suit your needs. In this case you can probably just comment out the parts that show the minimum bid.

The templates/public_product_list.html file is the template for the list view. Similarly you can change this to suit your needs.

-Steve

PostPosted: Tue Jul 29, 2008 5:58 am
by lobsterman
[quote="shannah"]

Just make changes to this template to suit your needs. In this case you can probably just comment out the parts that show the minimum bid.


-Steve[/quote]
Thanks.
Dumb question here: how do I comment out a line in those pages? Or do I just remove the line(s) in question?

PostPosted: Tue Jul 29, 2008 9:28 am
by shannah
Web Auction uses smarty for its templates. There's lots of information about smarty templates at http://smarty.php.net .

To Comments start with {* and end with *}

e.g.

{*This is a comment*}

-Steve