Hi Randem,
Thanks for your reply.
I guessed that the problem with capture was due to me upgrading OC to 2.0.2.0. and that the templatemonster theme was not compatible with update

...As worked fine before the update.
I did try replacing the code in /view/theme/mytheme/template/information/contact.tpl;
Code: Select all
<div class="form-group required">
<label class="col-sm-2 control-label" for="input-captcha"><?php echo $entry_captcha; ?></label>
<div class="col-sm-10">
<input type="text" name="captcha" id="input-captcha" class="form-control" />
</div>
</div>
<div class="form-group">
<div class="col-sm-10 pull-right">
<img src="index.php?route=tool/captcha" alt="" />
<?php if ($error_captcha) { ?>
<div class="text-danger"><?php echo $error_captcha; ?></div>
<?php } ?>
</div>
</div>
with code from /view/theme/default/template/information/contact.tpl;
Code: Select all
<?php if ($site_key) { ?>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="g-recaptcha" data-sitekey="<?php echo $site_key; ?>"></div>
<?php if ($error_captcha) { ?>
<div class="text-danger"><?php echo $error_captcha; ?></div>
<?php } ?>
</div>
</div>
<?php } ?>
Although this seemed to work, it threw out other issues when submitting form.
I am guessing that I also need to update the controller file; catalog/controller/information/contact.php, but not sure what to change here
If anyone is able to help here it would be appreciated, I am at a wall with this and site is ready to go live apart from this
