Quote:
Originally Posted by talkwebz
Its not like sitepoints.
I modified mine
www.talkwebz.com/vbay.php
I got rid of the stupid address text box and it doesn't work but if its there it would work im not going to use it but just telling you guys this is the cloest it looks like sitepoint's marketplace.
|
That was constructive :alien:
To remove the address requirement - edit vbay.php, search for and delete or comment out:
Code:
if ($address == '') {eval(standard_error(fetch_error('vbay_post_fields'))); }
and
Code:
if ($_POST['address'] == '') {
eval(standard_error(fetch_error('vbay_enter_address')));
}
if that doesn't work, you could probably set a default address by adding:
$address = "care of www.mydomain.com";
in the // SET UP CODE NEEDED FOR MAIN SCRIPT section...