Hello,
In the meantime, what view should I change and how ?
To do that you'll just have to :
- Go to the page "Hikashop->Display->Views"
- Edit the "show_auction_payment" file of the "auctionauction" view
- Remove these lines :
<div class="auction_decline_block">
<?php
echo JText::_('HKA_AUCTION_GIVE_UP_TEXT') . '</br>';
?>
<form action="<?php echo hikaauction::completeLink('auction&task=show_auction_payment'); ?>" method="post" name="hikaauction_product_form" enctype="multipart/form-data">
<input type="submit" value="<?php echo JText::_('HKA_AUCTION_GIVE_UP');?>">
<input type="hidden" id="product_id" name="product_id" value="<?php echo $this->fullProduct->product_id; ?>"/>
<input type="hidden" name="ctrl" value="auction"/>
<input type="hidden" name="task" value="show_auction_payment"/>
<input type="hidden" name="cancel_auction" value="1"/>
<input type="hidden" name="return_url" value="<?php
echo urlencode(base64_encode(hikaauction::currentUrl()));
// echo urlencode(base64_encode(urldecode($this->redirect_url)));
?>"/>
</form>
</div>
Note that you can also use that CSS code to adapt the displaying of the "Proceed to checkout" dropdown and button :
.auction_payment_block {
float: none !important;
width: 100% !important;
}
We have a lot of auctions that are identical items. We have communicated to our parents to put in their max bid, and only on the items they want. If they have the option to "give up on the auction", they will bid on all 10 of the same item. At the end of the auction, they will give up on nine of them, and then accept one. As a non-profit, this will lose a lot of money for us - because they will have driven the price up by bidding on multiple items, and other parents will not bid as a result of the price being too high.
Thank you for your feedback we'll probably create a "Show Give up button" option.