Magento 1.9 – Fix Google Recaptcha Issue on Product Review

captchamagento-1.9review

I have Installed the Google Recaptcha, and i was enabled the extension and entered successfully Site and Security Key. There was no Captcha in the Product Review Tab. Please Anyone Help me.?

I have used this extension.
enter link description here

Best Answer

app/design/frontend/theme/theme_sub/template/review/form.phtml

Go to above file, what i have to mentioned, and find the buttons-set and place this code above the buttons-set div.

<?php echo $this->getChildHtml('studioforty9.recaptcha.explicit'); ?>

or

<?php $recaptcha = $this->getLayout()->createBlock('studioforty9_recaptcha/explicit')->setTemplate('studioforty9/recaptcha/explicit.phtml'); ?>

<?php $this->setChild('studioforty9.recaptcha.explicit', $recaptcha->setAllow(true)); ?>

<?php echo $this->getChildHtml('studioforty9.recaptcha.explicit'); ?>