-
Ecommerce templates and software
Hi guys, I met with a potential client yesterday, and I could have a big ecommerce website on my hands with around 3,000 products. The company I work for usually purchase templates from templatemonster.com, edit them for the client in terms of colours, pictures etc and then apply to OSCommerce. Im just casually wondering, is this a practical thing for web designers to do or would I be better off designing our own template? Chris.
-
CSS eCommerce solution
Does anybody use www.templatemonster.com for ecommerce templates? Plenty of designs on there at around $100 for Zencart, OSCommerce and more. Dont be put off by the price, especially if you're building a large ecommerce site where the returns will be good!
-
Web Design Leaflet Marketing
Hi guys, Im just preparing a list of local housing, business and industrial estates to target ahead of my antipated leaflet campaign for my web design company. Have any of you guys got tips on anybody else to target? Who to avoid, etc. I know aiming our services at other local businesses is the key objective here but im going to promote our business around a couple of new housing estates on the off-chance people may like a personal site or something along them lines. My main objective is to target bars, pubs and restuarants. My research has concluded that there's hardly any restuarant websites out there at the moment so im going to do my best to spread the gospel of Procom Webserve.
-
-
General opinion
My honest opinion is that I perfer the current website, (at the moment). The dark does however work very well with white but I think it may well be a case of "why fix something that isn't broken?" I understand us web designers always have more ideas and are never happy with the final product, but my advice would be to finish off the design anyway and sell it as a template? Alterntively, you could design your current website in white and have an option which allows your visitors to switch themes between dark and light? Chris.
-
Website Blogs
Hi all, I was looking for opinions on a new blog ive made for my company website Procom Webserve. Here's our website: http://www.procom-webserve.com And here is the new blog: http://webdesignbloghull.wordpress.com Any suggestions for type of articles to write about and generally if its a good idea? This is just one of our quick marketing ideas and wondered if anybody had any similar design blogs? Chris.
-
Dreamweaver templates
I could be wrong here, but dont you need to save template files with the extention .dwt?
-
Adding an events calendar
Here are a list of websites that may be able to help you. They feature customisable calendars that are aimed at holiday home owners however I dont see why you couldn't use them for something else... http://www.myvrzone.com http://homeawayconnect.com http://holidaysitecentral.com
-
Online Booking with payment
Simple, Use http://calendar.google.com Best of all, its free!
-
My Confirmation email is lying...
Cheers, By the end of this week im going to be an expect on forms when in the past I usually tend to avoid something unknown! Chris.
-
My Confirmation email is lying...
Hi guys, Ive just pretty much finished a website for one of our clients - http://www.removalsworldwide.com and we have various forms within the website for use of the vistors. Ive designed the process files so that the person filling out the contact and quote forms will recieve an automatic confirmation email from the company which looks something like this... As you can see the Confirmation email is working well. However it states that the sender is from mailserver@procom-webserve.com which has probably got something to do with our companies own dedicated server sending the response, but I need it to say that it's from Removalsworldwide or something along them lines. Here is my code that is processing the form... <? $title .= "Enquiry from Removals Worldwide website ------------------------------ Name: " . $_POST['name']. " Email Address: " . $_POST['email']. " Telephone Number: " . $_POST['telephone']. " Destination From: " . $_POST['from']. " Destination To: " . $_POST['to']. " Local Area: " . $_POST['area']. " Volume: " . $_POST['volume']. " "; $to = "chris-dicko@live.co.uk" ; $subject = 'Online Enquiry Removals Worldwide'; $mailHeaders = "From: Website Visitor"; $mailHeaders .= "<chris-dicko@live.co.uk>"; mail($to, $subject, $title, $mailHeaders); $name=$_POST['name']; $email=$_POST['email']; $from="noreply@removalsworldwide.com"; $autoreply="Hello $name. Thank you for your enquiry. We can confirm that we have recieved your full quotation and Removals Worldwide promise to read and respond to all our emails within 24 hours. This is an automated message. http://www.removalsworldwide.com"; $subject="Confirmation from Removals Worldwide"; mail($email, $subject, $autoreply, $from); header ("Location: thankyou.htm"); exit; ?> Does anybody know a way around this? Thanks in advance. Chris.
-
PHP form question
--------------------------------------------------------- EDIT: Sorry I didnt notice you didn't want a pop-up alert. --------------------------------------------------------- No problems, Add the following JavaScript on your form page just below the opening <head> tag. You'll need to change the field names near the top of the script to match with your form. Add the fields which you need to be required. <script language="JavaScript"> <!-- /*********************************************** * Required field(s) validation v1.10- By NavSurf * Visit Nav Surf at http://navsurf.com * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ function formCheck(formobj){ // Enter name of mandatory fields var fieldRequired = Array("name", "email" ,"contact", "movingfrom", "movingto", "button", "volume"); // Enter field description to appear in the dialog box var fieldDescription = Array("name", "email" ,"contact", "movingfrom", "movingto", "button", "volume"); // dialog message var alertMsg = "Please complete the following fields:\n"; var l_Msg = alertMsg.length; for (var i = 0; i < fieldRequired.length; i++){ var obj = formobj.elements[fieldRequired[i]]; if (obj){ switch(obj.type){ case "select-one": if (obj.selectedIndex == -1 || obj.options[obj.selectedIndex].text == ""){ alertMsg += " - " + fieldDescription[i] + "\n"; } break; case "select-multiple": if (obj.selectedIndex == -1){ alertMsg += " - " + fieldDescription[i] + "\n"; } break; case "text": case "textarea": if (obj.value == "" || obj.value == null){ alertMsg += " - " + fieldDescription[i] + "\n"; } break; default: } if (obj.type == undefined){ var blnchecked = false; for (var j = 0; j < obj.length; j++){ if (obj[j].checked){ blnchecked = true; } } if (!blnchecked){ alertMsg += " - " + fieldDescription[i] + "\n"; } } } } if (alertMsg.length == l_Msg){ return true; }else{ alert(alertMsg); return false; } } // --> </script> Then add this extra variable into the top of your form where you tell the form what action to take... onsubmit="return formCheck(this);" Example: <form id="form1" onsubmit="return formCheck(this);" name="form1" method="post" action="process2.php"> I hope this helps.
-
Field seletion on contact form
Hi guys, Another annoying form question which has been bugging me. I haven't really made any advanced forms before so would really appreciate the advice here. Ive made my client a simple contact form for their removals and storage website and one of the fields in the form she wants is a country selection box such as Australia, UK, USA etc. Ive easily added that feature into the contact form. However what she wants NOW is for another field box below the county box which automatically gives you a selection of towns for that selected country. Example, if you picked Australia, the box below would give you the option of Perth, Melbourne, Sydney, Brisbane etc. How do I go about creating these? Thanks, Chris.
-
Adding image on form auto-response
Ive found something called ImageMagick which may be able to help me if anybody knows anything more on it?
-
Adding image on form auto-response
Bump.
-
Adding image on form auto-response
Anybody?