Jump to content

hsidhu

Members
  • Posts

    13
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    hsidhu got a reaction from ariq01 in Order form payment required to create order/ service   
    Thanks 
    Another thing I notice that when u delete client it doesn't delete Clients contact information and not client card form account_cc.
    Since, google is not supporting Recaptcha old version. I edited the Recaptcha helper base on https://github.com/google/recaptcha
    This change applies to verion 3.6.X
    It need little change in order form plugin 
    Order/controllers/signup.php
    around line 53 where it has
    if (!$this->Recaptcha->verify($this->post['recaptcha_challenge_field'], $this->post['recaptcha_response_field']))
    Replace with
    if (!$this->Recaptcha->verify($this->post['g-recaptcha-response']))
    and update helpers/recaptcha/recaptcha.php with the code in attached file
     
     
    blesta_Recaptcha.php
  2. Like
    hsidhu got a reaction from Michael in Order form payment required to create order/ service   
    Thanks 
    Another thing I notice that when u delete client it doesn't delete Clients contact information and not client card form account_cc.
    Since, google is not supporting Recaptcha old version. I edited the Recaptcha helper base on https://github.com/google/recaptcha
    This change applies to verion 3.6.X
    It need little change in order form plugin 
    Order/controllers/signup.php
    around line 53 where it has
    if (!$this->Recaptcha->verify($this->post['recaptcha_challenge_field'], $this->post['recaptcha_response_field']))
    Replace with
    if (!$this->Recaptcha->verify($this->post['g-recaptcha-response']))
    and update helpers/recaptcha/recaptcha.php with the code in attached file
     
     
    blesta_Recaptcha.php
×
×
  • Create New...