68 Classifieds Forums

Wish list

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 ...


Go Back   68 Classifieds Forums > v3.1 Legacy Help & Support > v3.1 Suggestions and Feedback

Reply
 
LinkBack Thread Tools Display Modes
  #11  
Old 10-01-2006, 09:49 PM
Member
 
Join Date: Apr 2006
Posts: 44
Rep Power: 12
bearcat is on a distinguished road
Default

Quote:
Originally Posted by Xemion View Post
Maybe I'm just an idiot but everyone seems to be mentioning "stepped checkout". I've never heard that phrase before. What exactly is "stepped checkout"?
For me as an admin, it means the ability to control the ad placement and checkout process page by page. For my free ads, I can remove the pages for the listing package and verification of personal information, since those would only be germane for paid listings.

There are other aspects of the stepped user checkout, but that is my own particular interest in it.
Reply With Quote
  #12  
Old 10-19-2006, 04:53 PM
free2take's Avatar
Senior Member
 
Join Date: Mar 2006
Location: Ireland
Posts: 229
Rep Power: 17
free2take is a jewel in the rough
Send a message via Yahoo to free2take
Default

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
Reply With Quote
  #13  
Old 10-22-2006, 05:20 PM
Chad's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 135
Rep Power: 12
Chad is on a distinguished road
Default

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.
__________________
Chad
http://www.parrotclassifiedads.com
v3.1.7 Developer
Reply With Quote
  #14  
Old 10-24-2006, 01:49 AM
Senior Member
 
Join Date: Oct 2006
Posts: 134
Rep Power: 12
manilaboy is on a distinguished road
Default

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
Reply With Quote
  #15  
Old 10-24-2006, 02:07 AM
SkGold's Avatar
Senior Member
 
Join Date: Mar 2006
Location: Best city in the World – Calgary, Canada
Posts: 465
Rep Power: 22
SkGold has a spectacular aura about
Default

Quote:
Originally Posted by manilaboy View Post
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.
As far as I know nothing what you asked are available now.
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.
Reply With Quote
  #16  
Old 10-26-2006, 12:15 PM
Junior Member
 
Join Date: Jul 2006
Posts: 25
Rep Power: 11
turkeygeorge is on a distinguished road
Default

Quote:
Originally Posted by bearcat View Post
Excellent thread.


Also good
6. Loan calculator. I thought I'd have to implement this on my own, but something like a loan/mortgage calculator built into the classifieds would be a nice touch.

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>&nbsp;</p>
<p>&nbsp;</p>
</FORM> </BODY>
</HTML>



Hope this helps!

Regards
John
__________________
John

V3.1.3 Developer
Reply With Quote
  #17  
Old 10-28-2006, 01:35 AM
Member
 
Join Date: Apr 2006
Posts: 44
Rep Power: 12
bearcat is on a distinguished road
Default

John, thank you so much for that.
Reply With Quote
  #18  
Old 12-04-2006, 06:49 PM
calaf6's Avatar
Senior Member
 
Join Date: Mar 2006
Location: UK
Posts: 333
Rep Power: 18
calaf6 is on a distinguished road
Default

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.
Reply With Quote
  #19  
Old 12-09-2006, 09:29 AM
juven14's Avatar
Moderator
 
Join Date: Mar 2006
Location: NJ/NYC Area
Posts: 2,132
Rep Power: 57
juven14 is a jewel in the rough
Send a message via Skype™ to juven14
Default

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.
__________________
Regards,

John


“By perseverance, study, and eternal desire, any man can become great.” George S. Patton
Reply With Quote
  #20  
Old 12-09-2006, 09:32 PM
Junior Member
 
Join Date: Dec 2006
Posts: 13
Rep Power: 9
FlyingBee is on a distinguished road
Default More than one category per listing.

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.
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

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


All times are GMT -4. The time now is 06:07 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22