Latest web site enhancement - a simple Contact Form using SC's built-in Recaptcha functionality. Most of this code was ripped out of sc_account.func.php and account_form.tpl.php - so kudo's to the SC folks for making this so easy. The only major drawback is that you must make a change to pre_storefront.php in order to get this to work (more on that later).
Click here to see what it looks like.
There are 3 files (which can be downloaded in ZIP from here):
- contact_form.php.txt - this is the PHP code that you'll insert into a Content page that you create via the control panel - be sure to put the editor in Source Mode.
- contact_form.tpl.php - this is the template - place it in you theme template directory for example: /squirrelcart/themes/squirrelcart
- header_contact_us.png - a simple little graphic to use or create your own - this should go in your theme images directory: /squirrelcart/themes/squirrelcart/images
Changes to pre_storefront.php - first, make a backup copy of this file. Then, using your fav PHP editor, search for sc_page - you should find some code that looks like:
Change the 2 $_GET's to $_REQUEST so you have something that looks like:Code:} elseif (is_numeric($_GET['sc_page'])) { // show a Content record as it's own page, via Links record with "Link To" set to "Content" $SC_content['sc_page'] = sc_page_content($_GET['sc_page']);
Save and re-upload the pre_storefront.php file to your web server.Code:} elseif (is_numeric($_REQUEST['sc_page'])) { // show a Content record as it's own page, via Links record with "Link To" set to "Content" $SC_content['sc_page'] = sc_page_content($_REQUEST['sc_page']);
You must enable ReCaptcha on your storefront settings, however, as I'm not about to touch the CP for modifications, you cannot turn just this function on/off for the Contact form like you can with Account/Password/Payment.
The email, by default is sent to the customer service address specified in your Store settings.
Usual disclaimers apply; I've tested this on my web site, and it seems to work fine. Your mileage may vary. Void where prohibited by law.
Enjoy.


Reply With Quote




