Home
Buy on eBid
Sell on eBid
eBid Stores
My eBid
Upgrade to Seller+ Lifetime
eBid Help
Close
Login to Your Account
eBid Community Forums - Chat & find help from others in the eBid Community
Results 1 to 9 of 9

Thread: Please remind me where a working store search mod is.....

  1. #1

    Question Please remind me where a working store search mod is.....

    The updated code for searching your own store like this:

    Code:
    				<form action="http://uk.four.ebid.net/perl/main.cgi" method="post" style="padding: 0px; margin: 0px;"> 
    					<table width="100%" border="0" cellspacing="0" cellpadding="0">   
    						<tr>     
    						<td width="130">
    						 <tr>
    
    			<input name="title" value="CMC ENTERTAINMENT STORE" type="hidden" /> 
    			   	<input name="mo" value="user-store" type="hidden" /> 
    						          	<input name="search" class="searchBox" value="" size="15" />
    							<input class="searchBtn" value="Go" type="submit" /> 
    							<span class="txtCopyright">Search Descriptions?</span> 
    							<input name="search_in_description" type="checkbox" /> 
    						</tr> 
    					</table> 
    				</form>
    As this doesnt work anymore is there an updated one?

    or i could unpick it from elsewhere...?

    thanks


    PS found a resource: http://www.ebidinfo.com/store_search_generator.php
    Last edited by cmc_entertainment; 7th July 2011 at 01:14 PM.

  2. #2

    Default Re: Please remind me where it is.....

    that doesnt work either

  3. #3

    Default Re: Please remind me where it is.....

    is it because the search is javascript based now?

  4. #4

    Default Re: Please remind me where it is.....

    this code works for the WHOLE of ebid:

    Code:
    <FORM ACTION="http://uk.ebid.net/perl/main.cgi" name="" onsubmit='return  check_search_form_submit(this.words, "Search eBid here");'><input type = hidden name = 'go' value = "1"><INPUT NAME="mo" TYPE=hidden VALUE="search">
    			<input type="hidden" NAME="category" value="">
    			<input type="hidden" name="type" value="keyword">
    			<div class="column" style="margin-top:17px;"><input type="text" name="words" class="searchbox " value="Search eBid here" onblur="if(this.value=='')this.value='Search eBid here'" onfocus="if(this.value=='Search eBid here')this.value=''"></div>
    			<div class="column" style="margin-top:17px;"><button name="go" class="searchbox " type="submit">Search</button></div>
    			</FORM>
    and this is the code from advanced search for individual store search / user ONLY:

    Code:
    <form action="http://uk.ebid.net/perl/main.cgi" name="search_form" onsubmit="return check_adv_top_search_frm_submit(this) && check_search_form_submit2(this.words, "Search eBid here");">
    <input type="hidden" name="view_format" value=""/>
    <input name="mo" type="hidden" value="search"/>
    <input type="hidden" name="search-store-go" value="1"/>
    <table cellspacing="0" style="margin:auto;">
    <tbody>
    <tr>
    <td class="p10">
    Enter Username or eBid Store Title 
    <input name="words" class="txt300" type="text" value="Which eBid Store are you looking for?" onblur="if(this.value=='')this.value='Which eBid Store are you looking for?'" onfocus="if(this.value=='Which eBid Store are you looking for?')this.value=''"/>
    </td>
    <td class="p10">
    <button name="search-store-gogo" type="submit" value="1">Search</button>
    </td>
    </tr>
    </tbody>
    </table>
    <table cellspacing="0" style="margin:auto;">
    <tbody>
    <tr>
    <td class="p10">
    Store Owner's Username 
    <input type="radio" name="search-store" value="username"/>
    </td>
    <td class="p10">
    eBid Store Title 
    <input type="radio" name="search-store" value="title" checked=""/>
    </td>
    </tr>
    </tbody>
    </table>
    </form>

    Now for some tinkering.....
    Last edited by cmc_entertainment; 7th July 2011 at 01:32 PM.

  5. #5

    Default Re: Please remind me where it is.....

    Quote Originally Posted by cmc_entertainment View Post
    this code works for the WHOLE of ebid:

    Code:
    <FORM ACTION="http://uk.ebid.net/perl/main.cgi" name="" onsubmit='return  check_search_form_submit(this.words, "Search eBid here");'><input type = hidden name = 'go' value = "1"><INPUT NAME="mo" TYPE=hidden VALUE="search">
    			<input type="hidden" NAME="category" value="">
    			<input type="hidden" name="type" value="keyword">
    			<div class="column" style="margin-top:17px;"><input type="text" name="words" class="searchbox " value="Search eBid here" onblur="if(this.value=='')this.value='Search eBid here'" onfocus="if(this.value=='Search eBid here')this.value=''"></div>
    			<div class="column" style="margin-top:17px;"><button name="go" class="searchbox " type="submit">Search</button></div>
    			</FORM>
    and this is the code from advanced search for individual store search / user ONLY:

    Code:
    <form action="http://uk.ebid.net/perl/main.cgi" name="search_form" onsubmit="return check_adv_top_search_frm_submit(this) && check_search_form_submit2(this.words, "Search eBid here");">
    <input type="hidden" name="view_format" value=""/>
    <input name="mo" type="hidden" value="search"/>
    <input type="hidden" name="search-store-go" value="1"/>
    <table cellspacing="0" style="margin:auto;">
    <tbody>
    <tr>
    <td class="p10">
    Enter Username or eBid Store Title 
    <input name="words" class="txt300" type="text" value="Which eBid Store are you looking for?" onblur="if(this.value=='')this.value='Which eBid Store are you looking for?'" onfocus="if(this.value=='Which eBid Store are you looking for?')this.value=''"/>
    </td>
    <td class="p10">
    <button name="search-store-gogo" type="submit" value="1">Search</button>
    </td>
    </tr>
    </tbody>
    </table>
    <table cellspacing="0" style="margin:auto;">
    <tbody>
    <tr>
    <td class="p10">
    Store Owner's Username 
    <input type="radio" name="search-store" value="username"/>
    </td>
    <td class="p10">
    eBid Store Title 
    <input type="radio" name="search-store" value="title" checked=""/>
    </td>
    </tr>
    </tbody>
    </table>
    </form>

    Now for some tinkering.....

    found Astral's webby with a search that works!

  6. #6

    Default Re: Please remind me where it is.....

    all sorted.

    Now have a working search.

  7. #7
    Forum Saint JanetB's Avatar
    Join Date
    Feb 2008
    Location
    Sun Valley, Nevada, United States
    View JanetB's Feedback (+1175)
    All-About JanetB
    View JanetB's Listings
    Forum Posts
    13,420

    Default Re: Please remind me where a working store search mod is.....

    You had better remove your ecommerce links at the bottom of your Me page. And also your web link and contact link in your side menu. They are not allowed on Me Pages, Auctions and Forums.
    Last edited by jeweleffects; 7th July 2011 at 08:51 PM.

  8. #8
    Forum Saint astral276's Avatar
    Join Date
    Jun 2008
    Location
    Grantham, Lincolnshire, United Kingdom
    View astral276's Feedback (+194)
    All-About astral276
    View astral276's Listings
    Forum Posts
    19,132

    Default Re: Please remind me where it is.....

    Quote Originally Posted by cmc_entertainment View Post
    all sorted.

    Now have a working search.
    But ended up talking to yourself. The first sign of madness.


  9. #9
    Forum Diehard Brunwulf's Avatar
    Join Date
    Dec 2006
    Location
    Stirling, Stirling, United Kingdom
    View Brunwulf's Feedback (+90)
    All-About Brunwulf
    View Brunwulf's Listings
    Forum Posts
    536

    Default Re: Please remind me where it is.....

    Quote Originally Posted by cmc_entertainment View Post
    all sorted.

    Now have a working search.
    Glad you got it fixed,

    I have also fixed my generator at ebidinfo, it was using the old url

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Follow Us
New To eBid?
Register for Free