News:

AbanteCart v1.4.3 is released.

Main Menu

Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - iangregson

#1
Hi
did you solve your problem ?
I posted a solution here http://forum.abantecart.com/index.php/topic,6532.msg27519.html#msg27519
#2
I had the same problem my fix was
edit css file and make 0.00 price white so you cant see it
and increase total price a little
#3
I had the problem of listing a product with several options. As I had set the base price of 0.00 and the options at full option price it looked bad listing many products with 0.00
Several replies suggested amendments but sadly did not work
After much tinkering I have found the solution. It also works for items set as Call to Order.
the problem for me was trying to trap 0.00. Solution is trap £0.00 and other currencies used

product_listing.tpl      also change any blocks such as latest.tpl
Around Line 83
<div class="price">
                     <?php if ($product['special']) { ?>
                        <div class="pricenew"><?php echo $product['special'] . $tax_message; ?></div>
                        <div class="priceold"><?php echo $product['price'] ?></div>
                                       
                     
                     <?php } else if ($product['call_to_order']) { ?>
                         <div class="oneprice"><?php echo "Contact for Price" ?></div>                  
                     
                     <?php } else if ($product['price'] == "€0.00" or $product['price'] == "£0.00") { ?>
                         <div class="oneprice"><?php echo "Select Option" ?></div>

                     
                     
                     <?php } else { ?>
                         <div class="oneprice"><?php echo $product['price'] . $tax_message; ?></div>
                     <?php } ?>

Forum Rules Code of conduct
AbanteCart.com 2010 -