Hello,
That worked but both Add to bidding AND "Add to Cart" displayed
That's because you didn't set the "add to cart" option to NO through the configuration page of your product listing content menu. I thought you wanted to display an "auction only" product listing.
In that case the solution will be to edit the "add_to_cart_ajax" file of the "product" view of your front-end template via "Hikashop->Display->Views" and change that line :
if($add_to_cart && !$has_options && !$global_on_listing) {
by :
if(isset($this->row->product_auction) && $this->row->product_auction == '1') {
$auction_link = hikashop_contentLink('product&task=show&cid=' . (int)$this->row->product_id . '&name=' . $this->row->alias . $this->itemid . $this->category_pathway, $this->row);
echo '<a class="hikabtn hikacart" rel="nofollow" href="'.$auction_link.'"><span>Add to bidding</span></a>';
}
if($add_to_cart && !$has_options && !$global_on_listing && (!isset($this->row->product_auction) || $this->row->product_auction != '1')) {
Kind regards,
Mohamed.