Jump to content

PWaddict

Members
  • Posts

    907
  • Joined

  • Last visited

  • Days Won

    1

PWaddict last won the day on December 7 2018

PWaddict had the most liked content!

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

3,993 profile views

PWaddict's Achievements

Hero Member

Hero Member (6/6)

427

Reputation

  1. @horst I've added multi-language support on both signature fields and sent you a pull request.
  2. I just installed the module on PW 3.0.229 and I chose the alt language as default but there is no redirect. EDIT: I had to do few more things to actually work: Add a page name to the default language on the Home page On Languages Support - Page Names module at "Default language homepage URL is same as root URL?" select "No - Root URL performs a redirect to: /name/"
  3. Hello! If the editor accidentally don't make a whole word as bold and do something like this: "Lorem" and then make the "Lo" letters bold too "Lorem" (<strong>Lo</strong><strong>rem</strong>) on the site using $sanitizer->truncate() for a summary, that word will be displayed as 2 words like this: "Lo rem". Any idea how to fix this?
  4. Hi! What industry category have you selected on Stripe for graphic design and web design/development? The entire list is viewable here. Is the "Other Digital Goods" or "Other Business Services" the proper one?
  5. I found the solution with wireLangReplacements() function. /** * Replace "Missing required value" text ONLY on frontend * */ if($page->template->name != "admin") { wireLangReplacements([ 'Missing required value' => 'My replacement value', ]); }
  6. Hi. I would like to replace the text "Missing required value" ONLY on frontend forms. Any idea how can I achieve that? Thanks in advance!
  7. No, I'm getting just 1 email. I've only changed the 203 and 211 lines and everything seems to properly work. Thanks for the help.
  8. @strandoo The above error text issue is caused by the 245 changed line.
  9. @strandoo I changed the 211 line and now it works but if I try to submit the form without checking the reCAPTCHA I'm getting the error "InputfieldRecaptcha" instead of the "Failed reCAPTCHA input test" as it should be due to the following hook: $wire->addHookBefore('SimpleContactForm::processValidation', function(HookEvent $event) { $form = $event->arguments(0); $recaptcha = $form->get('recaptcha'); // add error if not pass the reCaptcha test if (!$this->input->post->{'g-recaptcha-response'}) { // attach an error to the field $recaptcha->error(__('Failed reCAPTCHA input test')); // it will be displayed along the field } });
  10. @strandoo I replaced $form->getErrors() with $form->getErrorInputfields() on lines 203 and 245 but now I'm always getting SPAM error when I'm trying to fill a form (even without filling the honeypot field) and on the logs I'm getting this: [FAILURE] Number of fields does not match. IP: 127.0.0.1
  11. Currently I can't try it cause it requires at least PHP 8. I'm still using PHP 7.4 as I don't want to update yet without testing all modules to make sure everything works properly. @strandoo so far we are the only ones that mentioned this issue and I notice that we both use your reCAPTCHA solution. Have you tested the form without the reCAPTCHA?
  12. Yes, only one failed and then 1 second later success! I didn't thought about the PW updates. On January, I've upgraded the one site I'm using this module from 3.0.165 to 3.0.210 but the frequent spam started on April if I remember correctly. No idea what is causing this issue. Don't forget that this is an abandoned module 😞
  13. Problem solved thanks to @matjazp Since I'm using the page referenced field on the user template I had to change the following 2 fields since the user template doesn't have a title field. Fields to query for autocomplete Label field
  14. Lately, I'm getting lot of SPAM. I checked the log and even it detects the SPAM as FAILURE like "Honeypot field was filled" or "Number of fields does not match" then 1 second later there is a SUCCESS. Here is a log of "Honeypot field was filled": 23 hours ago 2023-06-13 07:38:44 [SUCCESS] Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36, 37.212.202.92, myemail@mysite.com 23 hours ago 2023-06-13 07:38:43 [FAILURE] Honeypot field was filled. IP: 37.212.202.92 Here is a log of "Number of fields does not match": 13 minutes ago 2023-06-14 06:24:52 [SUCCESS] Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36, 176.124.220.43, myemail@mysite.com 13 minutes ago 2023-06-14 06:24:51 [FAILURE] Number of fields does not match. IP: 176.124.220.43 I'm also using reCAPTCHA but it seems that spammers have found a way to pass all these...
  15. @Java I'm using the 1.07 version and the module is working properly. Which version you have installed?
×
×
  • Create New...