Originally Posted by
countrycharm
This may have been answered but how do I go about putting the Captcha at the bottom of the Step 1 of 5 - Billing Information page. It was working up until I added this module. Thanks for the help.

Originally Posted by
countrycharm
I still need help with this if anyone could help. Thanks again.
If anybody else has the the add on captcha_using_ttf__gd__tel and you add this add on here you will need to add some code to the includes/modules/pages/no_account header.php. to get the captcha to show up. The header needs to look like this.
PHP Code:
<?php
/**
* no_account header_php.php
*
* @package page
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: J_Schilz for Integrated COWOA - 14 April 2007
*/
// This should be first line of the script:
$zco_notifier->notify('NOTIFY_HEADER_START_NO_ACCOUNT');
require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));
include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_NO_ACCOUNT));
// BOF Captcha
if(CAPTCHA_NO_ACCOUNT != 'false') {
require(DIR_WS_CLASSES . 'captcha.php');
$captcha = new captcha();
}
// EOF Captcha
$breadcrumb->add(NAVBAR_TITLE);
// This should be last line of the script:
$zco_notifier->notify('NOTIFY_HEADER_END_NO_ACCOUNT');
?>