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;








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!!










share|improve this question
































    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!!










    share|improve this question




























      0












      0








      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!!










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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























          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
          );



          );













          draft saved

          draft discarded


















          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















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form