This is a discussion on Wish list within the v3.1 Suggestions and Feedback forums, part of the v3.1 Legacy Help & Support category; Originally Posted by Xemion Maybe I'm just an idiot but everyone seems to be mentioning "stepped checkout". I've never heard ...
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#11
|
|||
|
|||
|
Quote:
There are other aspects of the stepped user checkout, but that is my own particular interest in it.
|
|
#12
|
||||
|
||||
|
1) Ad notificationfor sure this is an excellent feature wish it was there.
2) Shopping Cart 3) How did you hear about us poll ? no good advertising if you can't verify if its working or not, could even just be a drop down / text box in the registration form 4) Bulk picture \ product upload Cheers, Mully
__________________
v4.08 |
|
#13
|
||||
|
||||
|
I'd like to see users be able to send money to their account and have future ads just deduct $ from that amount. I think it would be a much easier system to deal with than the current pay-per-ad system.
|
|
#14
|
|||
|
|||
|
I like to have a feature where listings on my site will be auto-published on oodle, google base, yello and other sites.
I like to have a watermark feature for my advertiser images. I also like to have a google maps, yahoo locals. Most importantly, I like to have an "auto notify" if an ad or item is published that matches the user's search parameters. (price range, location, size, etc...) If these features are now available, please advise. Thanks, Mike D Designer 3.1.5 |
|
#15
|
||||
|
||||
|
Quote:
If you want to use Yahoo maps instead of Google, you may find it here. As for "auto notify", it was out one time, but I guess still have some problems, so it is not available at this moment. There are many people asking for it, so I hope it will be out with the next release, but maybe I am not right.
__________________
Thanks, Sergey Bargain Finder in Calgary, Alberta, Canada. Calgary Business Directory V3.1.10 Dev - Calgary Classifieds V3.1.10 Dev - Calgary Real Estate V3.1.10 Dev - Calgary Used Cars V3.1.10 Dev - Calgary Rent V3.1.10 Dev - Calgary Dating V3.1.5 Dev A website without well-done Internet Marketing and Search Engine Optimization is as good as non-existent.
|
|
#16
|
|||
|
|||
|
Quote:
Bearcat This may be of use to you. I use this on one of my sites. It`s a mortgage calc. <HTML> <HEAD> <TITLE>Mortgage Calculator</TITLE><STYLE TYPE="text/css"> body { background-color: #FFFFFF;} td { font-family: Arial; font-size: 10pt; } </STYLE> <SCRIPT LANGUAGE="JAVASCRIPT"> <!-- function checkNumber(input, min, max, msg) { msg = msg + " field has invalid data: " + input.value; var str = input.value; for (var i = 0; i < str.length; i++) { var ch = str.substring( i, i + 1) if ((ch < "0" || "9" < ch) && ch != '.') { alert(msg); return false; } } var num = 0 + str if (num < min || max < num) { alert(msg + " not in range [" + min + ".." + max + "]"); return false; } input.value = str; return true; } function computeField(input) { if (input.value != null && input.value.length != 0) { input.value = "" + eval(input.value); } computeForm(input.form); } function computeForm(form) { var A=form.A.value; var T=form.T.value; var R=form.R.value; if ((A == null || A.length == 0) || (R == null || R.length == 0)) { return; } if (!checkNumber(form.A, 1, 999999, "Loan Amount") || !checkNumber(form.R, .001, 1000, "Interest Rate") || !checkNumber(form.T, 5, 25, "Term")) { form.Cm.value = ""; return; } R = R / 100; var P = ((A*R)/12) * (1/(1-(Math.pow(1/(1+R),T)))); form.Cm.value = poundsPence( P ); P = ((A*0.12)/12) * (1 / (1-(Math.pow((1/1.12),T)))); form.CCm.value = poundsPence( P ); P = (A*R)/12; form.CI.value = poundsPence( P ); P = (A*0.12)/12; form.CCI.value = poundsPence( P ); } function poundsPence( N ) { if ((navigator.appName.indexOf('Microsoft')>-1) && (navigator.appVersion.indexOf('3.0')>-1) ) { return N; } S = new String( N ); var i = S.indexOf('.'); if (i != -1) { S = S.substr( 0, i+3 ); if (S.length-i < 3) S = S + '0'; } return S; } function clearForm(form) { form.A.value = ""; form.T.value = ""; form.R.value = ""; } //--> </SCRIPT> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></HEAD> <BODY bgcolor="#DFDCFC"> <FORM> <p> <INPUT SIZE="10" MAXLENGTH="12" NAME="CCm" TYPE="hidden"> <INPUT SIZE="10" MAXLENGTH="12" NAME="CCI" TYPE="hidden"> </p> <p><br> </p> <TABLE WIDTH="500" CELLPADDING="3" CELLSPACING="1" BGCOLOR="#A49BC6" ALIGN="CENTER"> <TR> <TD> <P align="center"><FONT COLOR="E7E7F7"><strong>Mortgage Calculator</strong></FONT></P></TD> </TR> <TR> <TD BGCOLOR="#FFFFFF" VALIGN="TOP" ALIGN="CENTER"><br> <img src="templates/housebiz/images/calc2.jpg" width="100" height="67"><br> <br> <font color="#666666" size="4">Please enter the loan amount, interest rate and term in the boxes provided. Press calculate to view results.</font><br> <br> <TABLE WIDTH="375" CELLPADDING="2" CELLSPACING="1" ALIGN="CENTER"> <TR VALIGN="MIDDLE"> <TD ALIGN="RIGHT" VALIGN="MIDDLE" WIDTH="190" BGCOLOR="#F5F5F5">Loan Amount:</TD> <TD ALIGN="CENTER" VALIGN="MIDDLE" WIDTH="10">£</TD> <TD><INPUT SIZE="10" MAXLENGTH="8" NAME="A" ONCHANGE="computeField(this)" TYPE="text" onFocus="this.value=''" VALUE="150000"></TD> </TR> <TR VALIGN="MIDDLE"> <TD ALIGN="RIGHT" VALIGN="MIDDLE" WIDTH="190" BGCOLOR="#F5F5F5">Interest Rate:</TD> <TD ALIGN="CENTER" WIDTH="10"></TD> <TD><INPUT SIZE="5" MAXLENGTH="4" NAME="R" ONCHANGE="computeField(this)" TYPE="text" onFocus="this.value=''" VALUE="4.5"> %</TD> </TR> <TR VALIGN="MIDDLE"> <TD ALIGN="RIGHT" VALIGN="MIDDLE" WIDTH="190" BGCOLOR="#F5F5F5">Term (5 to 25 years): </TD> <TD ALIGN="CENTER" WIDTH="10"></TD> <TD><INPUT SIZE="5" MAXLENGTH="3" NAME="T" ONCHANGE="computeField(this)" TYPE="text" onFocus="this.value=''" VALUE="25"> yrs</TD> </TR> <TR VALIGN="MIDDLE"> <TD ALIGN="CENTER" COLSPAN="3" HEIGHT="50"><INPUT VALUE="Calculate" MAXLENGTH="15" ONCLICK="computeForm(this.form)" NAME="button" TYPE="button"></TD> </TR> <TR VALIGN="MIDDLE"> <TD ALIGN="RIGHT" VALIGN="MIDDLE" WIDTH="190" BGCOLOR="#F5F5F5">Monthly Repayment Amount:</TD> <TD ALIGN="CENTER" WIDTH="10">£</TD> <TD><INPUT SIZE="10" MAXLENGTH="12" NAME="Cm" ONCHANGE="computeField(this)" TYPE="text"></TD> </TR> <TR VALIGN="MIDDLE"> <TD ALIGN="RIGHT" VALIGN="MIDDLE" WIDTH="190" BGCOLOR="#F5F5F5">Interest Only Amount:</TD> <TD ALIGN="CENTER" WIDTH="10">£</TD> <TD><INPUT SIZE="10" MAXLENGTH="12" NAME="CI" ONCHANGE="computeField(this)" TYPE="text"></TD> </TR> </TABLE> <P ALIGN="CENTER"><FONT COLOR="#666666" size="4">Repayment amounts are based on 12 payments per year. These figures are a guide only. We recommend that you obtain the exact figures from a specific lender before committing to any mortgage.</FONT><FONT COLOR="#666666"><br> <br> <a href="javascript:window.close();"><font color="#000066"><strong>Close Window</strong></font></a><br> <br> </FONT></P></TD> </TR> </TABLE> <p> </p> <p> </p> </FORM> </BODY> </HTML> Hope this helps! Regards John
__________________
John V3.1.3 Developer |
|
#17
|
|||
|
|||
|
John, thank you so much for that.
|
|
#18
|
||||
|
||||
|
Only simple things for me, but then I am simple anyway (before anyone says it!!)
Add to favorites button - as most people are lazy and its easier to click one button when you are reminded than to think about it!! SEO to pick up top 2 levels of categories and change to text - below that is likely to be minor anyway Quick Search box on the home page, with an advanced search that links to the proper search page Multiple category postings - already on the agenda, but just to register my vote for it as well ![]() i'm happy to be a test pilot if you need one for any of the above. Last edited by calaf6; 12-06-2006 at 06:46 AM. |
|
#19
|
||||
|
||||
|
A better way of arranging categorys for the dropdown. It isn't practical with loads of categories several levels deep.
Maybe a couple of select boxes with AJAX or something. |
|
#20
|
|||
|
|||
|
The site I'm working on will be used to allow licensed contractors to advertise their services... The listing needs to be per contracting company, and since most contractors do more than one thing... and it would be great if they could chose multiple categories to list in at one time.
Maybe a checkbox next to the service categories that they are licensed to provide.... plumber kitchen remodel new house construction window installation etc. etc. Maybe this is already available? If so, where can I find it, if not- who's up for a challenge? Thanks. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Looking for list of variables. | BigOrange | HTML, CSS, and Design Help | 7 | 10-06-2006 03:55 PM |
| List of Smarty Variables and Arguments? | bgordon | v3.1 Modules & Modifications | 5 | 09-12-2006 04:06 PM |
| displaying category drop-down list | remote | v3.1 Questions & Support | 2 | 08-10-2006 10:11 AM |
| Select field problem (extra field --> drop down list) | pat01 | v3.1 Questions & Support | 1 | 08-10-2006 03:05 AM |
| Category List | freeman65 | v3.1 Questions & Support | 2 | 07-19-2006 12:15 AM |