I think some posts back there was some problems with the Buy-Now button not posting the right price to the cart! I finely had the same problem.... When I was upgrading to 1.3.9g and making some design changes to my product and auction pages, I ended up move the first line which starts the form from the product page to the auction page.
Code:
<!--bof Form start-->
<?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"'); ?>
<!--eof Form start-->
basically, not allowing for the extra cart actions which made the swoop on prices to function... The part in red...
Code:
<!--bof Form start-->
<?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product&mod=auction', $request_type), 'post', 'enctype="multipart/form-data"'); ?>
<!--eof Form start-->
Without the extra cart action, the Buy-Now just takes the price from the product_price which is holding the current or starting bid. The only difference in this line from 1.3.8a is the $request_type
Bookmarks