Captcha is not showing in contact us page Magento 1.9How to implement Magento Captcha in Contact- Us form?Multiple options for recipient in contact formCaptcha not showing on frontend login pageHow to implement Magento Captcha in Contact- Us form?Magento 2 CAPTCHA not showing when enabledContact-us page captcha not showing on another page using the same templateIncorrect captcha error message not showing on previous means form page magento 1.9Magento 2 - Add google captcha on contact form
Why did this happen to Thanos's ships at the end of "Avengers: Endgame"?
How to find multiple values on the same line in any permutation using Notepad++?
Why is my Earth simulation slower than the reality?
Identify a problem where a potentially winning move draws because of the 50 move rule
find the path of a data extension for a SQL Query
Sci fi film similar to Village of the Damned
Who was president of the USA?
Avoiding racist tropes in fantasy
Was it ever possible to target a zone?
Thank God it's Friday, tomorrow is THE weekend. Why the definite article?
Why in most German places is the church the tallest building?
Anatomically Correct Whomping Willow
Did the British navy fail to take into account the ballistics correction due to Coriolis force during WW1 Falkland Islands battle?
What to say to a student who has failed?
What is the difference between Major and Minor Bug?
Understanding Parallelize methods
What is the difference between "Grippe" and "Männergrippe"?
Ensuring all network services on a device use strong TLS cipher suites
Is for(( ... )) ... ; a valid shell syntax? In which shells?
What is this symbol: semicircles facing each other?
What are some interesting features that are common cross-linguistically but don't exist in English?
Is “I am getting married with my sister” ambiguous?
Can a Rogue PC teach an NPC to perform Sneak Attack?
Justifying the use of directed energy weapons
Captcha is not showing in contact us page Magento 1.9
How to implement Magento Captcha in Contact- Us form?Multiple options for recipient in contact formCaptcha not showing on frontend login pageHow to implement Magento Captcha in Contact- Us form?Magento 2 CAPTCHA not showing when enabledContact-us page captcha not showing on another page using the same templateIncorrect captcha error message not showing on previous means form page magento 1.9Magento 2 - Add google captcha on contact form
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have referred below link to implement captcha in contact us page.
How to implement Magento Captcha in Contact- Us form?
The above code is working well even captcha is showing on contact us page.
I am also using contact form in the footer of the website.
The code is like below.
<div class="contact-block-footer footer-col last" id="contactFormFooter">
<h4><?php echo Mage::helper('contacts')->__('Contact form') ?></h4>
<form action="<?php echo $this->getUrl('') ?>contacts/index/post/" method="post">
<div class="fieldset footer-col-content">
<ul class="form-list">
<li class="fields">
<div class="field">
<div class="input-box">
<input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Name:') ?>"/>
</div>
</div>
<div class="field">
<div class="input-box">
<input name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Email:') ?>" />
</div>
</div>
<div class="field">
<div class="input-box">
<textarea name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Message') ?>" class="required-entry input-text" cols="5" rows="3" placeholder="<?php echo Mage::helper('contacts')->__('Message:') ?>"></textarea>
</div>
</div>
</li>
<?php echo $this->getChildHtml('form.additional.info'); ?>
</ul>
<div class="buttons-set-footer">
<input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
<button type="submit" title="<?php echo Mage::helper('contacts')->__('Send') ?>" class="button"><span><span><?php echo Mage::helper('contacts')->__('Send') ?></span></span></button>
</div>
</div>
</form>
</div>
<script type="text/javascript">
//<![CDATA[
var contactFormFooter = new VarienForm('contactFormFooter', true);
//]]>
</script>
I need to show captcha in this form also, Is there any possibility to show the captcha in the contact form i used in the footer?
Can anyone help me how to implement this one.
Thanks!!
magento-1.9 contact-us captcha
add a comment |
I have referred below link to implement captcha in contact us page.
How to implement Magento Captcha in Contact- Us form?
The above code is working well even captcha is showing on contact us page.
I am also using contact form in the footer of the website.
The code is like below.
<div class="contact-block-footer footer-col last" id="contactFormFooter">
<h4><?php echo Mage::helper('contacts')->__('Contact form') ?></h4>
<form action="<?php echo $this->getUrl('') ?>contacts/index/post/" method="post">
<div class="fieldset footer-col-content">
<ul class="form-list">
<li class="fields">
<div class="field">
<div class="input-box">
<input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Name:') ?>"/>
</div>
</div>
<div class="field">
<div class="input-box">
<input name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Email:') ?>" />
</div>
</div>
<div class="field">
<div class="input-box">
<textarea name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Message') ?>" class="required-entry input-text" cols="5" rows="3" placeholder="<?php echo Mage::helper('contacts')->__('Message:') ?>"></textarea>
</div>
</div>
</li>
<?php echo $this->getChildHtml('form.additional.info'); ?>
</ul>
<div class="buttons-set-footer">
<input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
<button type="submit" title="<?php echo Mage::helper('contacts')->__('Send') ?>" class="button"><span><span><?php echo Mage::helper('contacts')->__('Send') ?></span></span></button>
</div>
</div>
</form>
</div>
<script type="text/javascript">
//<![CDATA[
var contactFormFooter = new VarienForm('contactFormFooter', true);
//]]>
</script>
I need to show captcha in this form also, Is there any possibility to show the captcha in the contact form i used in the footer?
Can anyone help me how to implement this one.
Thanks!!
magento-1.9 contact-us captcha
add a comment |
I have referred below link to implement captcha in contact us page.
How to implement Magento Captcha in Contact- Us form?
The above code is working well even captcha is showing on contact us page.
I am also using contact form in the footer of the website.
The code is like below.
<div class="contact-block-footer footer-col last" id="contactFormFooter">
<h4><?php echo Mage::helper('contacts')->__('Contact form') ?></h4>
<form action="<?php echo $this->getUrl('') ?>contacts/index/post/" method="post">
<div class="fieldset footer-col-content">
<ul class="form-list">
<li class="fields">
<div class="field">
<div class="input-box">
<input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Name:') ?>"/>
</div>
</div>
<div class="field">
<div class="input-box">
<input name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Email:') ?>" />
</div>
</div>
<div class="field">
<div class="input-box">
<textarea name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Message') ?>" class="required-entry input-text" cols="5" rows="3" placeholder="<?php echo Mage::helper('contacts')->__('Message:') ?>"></textarea>
</div>
</div>
</li>
<?php echo $this->getChildHtml('form.additional.info'); ?>
</ul>
<div class="buttons-set-footer">
<input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
<button type="submit" title="<?php echo Mage::helper('contacts')->__('Send') ?>" class="button"><span><span><?php echo Mage::helper('contacts')->__('Send') ?></span></span></button>
</div>
</div>
</form>
</div>
<script type="text/javascript">
//<![CDATA[
var contactFormFooter = new VarienForm('contactFormFooter', true);
//]]>
</script>
I need to show captcha in this form also, Is there any possibility to show the captcha in the contact form i used in the footer?
Can anyone help me how to implement this one.
Thanks!!
magento-1.9 contact-us captcha
I have referred below link to implement captcha in contact us page.
How to implement Magento Captcha in Contact- Us form?
The above code is working well even captcha is showing on contact us page.
I am also using contact form in the footer of the website.
The code is like below.
<div class="contact-block-footer footer-col last" id="contactFormFooter">
<h4><?php echo Mage::helper('contacts')->__('Contact form') ?></h4>
<form action="<?php echo $this->getUrl('') ?>contacts/index/post/" method="post">
<div class="fieldset footer-col-content">
<ul class="form-list">
<li class="fields">
<div class="field">
<div class="input-box">
<input name="name" id="name" title="<?php echo Mage::helper('contacts')->__('Name') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserName()) ?>" class="input-text required-entry" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Name:') ?>"/>
</div>
</div>
<div class="field">
<div class="input-box">
<input name="email" id="email" title="<?php echo Mage::helper('contacts')->__('Email') ?>" value="<?php echo $this->escapeHtml($this->helper('contacts')->getUserEmail()) ?>" class="input-text required-entry validate-email" type="text" placeholder="<?php echo Mage::helper('contacts')->__('Email:') ?>" />
</div>
</div>
<div class="field">
<div class="input-box">
<textarea name="comment" id="comment" title="<?php echo Mage::helper('contacts')->__('Message') ?>" class="required-entry input-text" cols="5" rows="3" placeholder="<?php echo Mage::helper('contacts')->__('Message:') ?>"></textarea>
</div>
</div>
</li>
<?php echo $this->getChildHtml('form.additional.info'); ?>
</ul>
<div class="buttons-set-footer">
<input type="text" name="hideit" id="hideit" value="" style="display:none !important;" />
<button type="submit" title="<?php echo Mage::helper('contacts')->__('Send') ?>" class="button"><span><span><?php echo Mage::helper('contacts')->__('Send') ?></span></span></button>
</div>
</div>
</form>
</div>
<script type="text/javascript">
//<![CDATA[
var contactFormFooter = new VarienForm('contactFormFooter', true);
//]]>
</script>
I need to show captcha in this form also, Is there any possibility to show the captcha in the contact form i used in the footer?
Can anyone help me how to implement this one.
Thanks!!
magento-1.9 contact-us captcha
magento-1.9 contact-us captcha
edited Aug 13 at 11:45
jafar pinjar
asked Aug 12 at 6:48
jafar pinjarjafar pinjar
1,0375 silver badges26 bronze badges
1,0375 silver badges26 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f285111%2fcaptcha-is-not-showing-in-contact-us-page-magento-1-9%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f285111%2fcaptcha-is-not-showing-in-contact-us-page-magento-1-9%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown