Requiring to add the Image below contact form
By
Mithlesh, in General Support
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By abdulqayyum
Hy Processwire community,
There are some problem in fileCompiler cache.
when i change under the directory \site\templates\ it must change under the directory /site/assets/cache/FileCompiler/site/templates/
but it does not update and functionality working with /site/assets/cache/FileCompiler/site/templates/ directory.
In this case please suggest me how i clear fileCompiler cache?
what i have to clear it manually?
Thanks AbdulQayyum.
-
By Roberts R
Hello.
I never though about it before but when I insert image into CKeditor field I don't get ALT tag filled from image that has it. Do I have to do it manualy for inserted image or Im doing something wrong?
-
By abdulqayyum
Hy everyone,
i am using loginRegister module for front-end user login.
In this module user can login with Email/username, i am showing with Email. done
but not showing Email in Forgotton Password section. there still showing with username.
i want to show Forgotton Password with Email instead username. and should reset with email.
please help me in this section, how i can set it with Email.
Thanks AbdulQayyum.
-
By abdulqayyum
Markup-Google-Recaptcha is not working with LoginRegister module in Forgotton Password Form.
Here is my code
wire-> modules -> process -> ProcessForgotPassword.php
protected function step1_renderForm() {
$form = $this->modules->get("InputfieldForm");
$form->attr('action', './?forgot=1');
$form->attr('method', 'post');
$field = $this->modules->get("InputfieldText");
$field->attr('id+name', 'username');
$field->attr('class', 'redesign-field forgotPassFeild');
$field->setAttribute('placeholder', 'Username');
$field->required = true;
$field->label = $this->_("Forgotton Password");
$field->description = $this->_("If you cannot remember your password to access the affiliates portal. simply provide your username in the box below and we'll send you a reset link via email.");
$form->add($field);
// Calling MarkupGoogleRecaptcha Module.
$captcha = $modules->get("MarkupGoogleRecaptcha");
// rendering form with recaptcha
$captcha->render($form);
$submit = $this->modules->get("InputfieldSubmit");
$submit->attr('id+name', 'submit_forgot');
$form->add($submit);
$this->session->userResetStep = 1;
// rendering form
$out .= $form->render();
// getting captcha script
$out .= $captcha->getScript();
return $out;
}
I am following this one example.
please suggest me how i can show MarkupGoogleRecaptcha in forgotton password.
Getting log error
Thanks,
Abdul Qayyum
-
By Mithlesh
Hi there,
My form is not getting submitted, it is showing:
Unable to verify successful email delivery of this form submission.
Attaching for your reference as well:
In the Backend, it is showing Connection timed out with smtp.gmail.com
Pl guide me how to resolve that
-