romahawk First Post Posted on: 07-10-09 01:32 PM
BidFind

The BidFind script is not reading prices from the Fixed Price category..... See this BidFind page......\ \ http://www.bidfind.com/cgi-bin/af1.pl
mewsoft Reply #: 1 Posted on: 07-10-09 05:40 PM
Re: BidFind

The link  you posted just points to BidFind search page.

Mewsoft Support
www.mewsoft.com

romahawk Reply #: 2 Posted on: 07-10-09 08:48 PM
Re: BidFind

Sorry about that, i did a copy and paste of the link showing the items and didn't check to see that it worked. \ \ If you type Beadspinner in the search box it brings up four items and the price on all four show $0.00 ...
mewsoft Reply #: 3 Posted on: 07-11-09 11:19 AM
Re: BidFind

Correct, a quick fix is to edit the file BidFind.pm change this line:

$Price = $Currency{$Item{Currency}} . " ". sprintf("%.2f", $Item{Current_Bid});

to:

   if  ($Item{Buy_Price} > 0) {
     $Price = $Currency{$Item{Currency}} . " ". sprintf("%.2f", $Item{Buy_Price});
   }
   else{
     $Price = $Currency{$Item{Currency}} . " ". sprintf("%.2f", $Item{Current_Bid});
   }

I think line number 87.


Mewsoft Support
www.mewsoft.com

romahawk Reply #: 4 Posted on: 07-11-09 01:28 PM
Re: BidFind

That fixed it, thanks.........