I'd love to have an instant-quote feature on my site, with which customers can input certain information about their job and receive and instant calculation for their job cost.
I'm familiar enough with HTML, Javascript and PHP to modify code when it's in front of me, but don't know enough to design it from scratch. Right now I don't have any on-call designers because we haven't had much work in that department, so I don't have anyone in-house who can do this.
Are there any designers on this forum, or free script sites out there that would be able to help with this?
Aaron
__________________
The proud owner of a full service print shop. Screen printing, vinyl decals, stickers, signs and banners, vehicle lettering and wraps, and more! Check out our blog too!
Hi, currently do your customer submit any info to you via a form on your site for their job? if so, most of the work is already done for you...all you have to do is grab the global variables from the form using php, assign them to variables, crunch the numbers and display...off hand I don't know of any sites that provide scripts and as it will probably be custom it might be easiest to do it yourself if you already have html/php knowledge..feel free to mail me and I'll try get something coded up for you or if you have something that isn't working send it my way and I'll see if I can get it to work...I'm no php expert or whatever but did IT in college a few years back and recently got our site up and running so its somewhat fresh in my mind..would be happy to help if I can..
Thanks for the reply. I do have a form that I made for customers to fill out, it's just not an auto-calculated quote - I do the calculating
It's located here:
kushworks.com/main/index.php?act=viewDoc&docId=7
It would need some tweaking because alot of the fields are text fields - also the garment quantities and colors per design would have to work like a pricing matrix because the resulting price is dependent on each of those inputs working together. I'm not sure what would be involved in all of that.
Aaron
__________________
The proud owner of a full service print shop. Screen printing, vinyl decals, stickers, signs and banners, vehicle lettering and wraps, and more! Check out our blog too!
Last edited by Rodney; October 12th, 2009 at 12:57 PM.
Reason: delinked URL
Hey, ok, just had a look...it should be possible to do...the price matrix thing would be sorted out with a few "if statements" (although as I said, I'm no coder, others may correct me) along the lines of "if sizeYouthMaleQty is X then price is Y" etc..however, to this you would have to error check and validate your form to ensure that only numbers are inputted where there should be numbers, not too tough to do...google form error checking and you'll get a variety of examples...also, for a good simple example of how the form/php script/display answer thing works have a look at PHP Forms - its a real basic example but more or less what you want to do...the only thing is before displaying back you would have to do your maths and then display the answer..
Thanks for the link! I'll do some reading, looks like it might not be as impossible as I thought.
__________________
The proud owner of a full service print shop. Screen printing, vinyl decals, stickers, signs and banners, vehicle lettering and wraps, and more! Check out our blog too!
Ye, it really isn't impossible and with a bit of work with King Google you'll find all the answers you need...again, feel free to mail me and I'll help if I can...good luck with it...
A potential problem is if you will allow custom graphics, most graphics we have ever received from a customer need some sort of work.
For a quick start you may want to consider using a regular shopping cart and just modifiying it so it doesn't take payment but will produce an invoice that's relabeled as a quote.
Re: Instant Quote Script for screen printing website
We have a quote generator on our site which is nothing fancy but does the job, its cool in that we get an email everytime someone gets a quote but I think the shopping cart is a better idea as you can then easily jump to taking card payments etc.
Re: Instant Quote Script for screen printing website
Quote:
Originally Posted by vuego100
We have a quote generator on our site which is nothing fancy but does the job, its cool in that we get an email everytime someone gets a quote but I think the shopping cart is a better idea as you can then easily jump to taking card payments etc.
The system on your site is great, I love that it takes the user right to an order form from their quote. I'd love to learn more about it if you aren't opposed to sharing your coding.
__________________
The proud owner of a full service print shop. Screen printing, vinyl decals, stickers, signs and banners, vehicle lettering and wraps, and more! Check out our blog too!