Fixed
Project:
HeCAPTe
Version:
1.0.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Jul 2026 at 09:46 UTC
Updated:
28 Jul 2026 at 09:51 UTC
Jump to comment: Most recent
Depending on the theme's CSS, the Retry button may appear although the verification passed and the user need not do anything.

Whenever .button has display: set to anything other than none it will show despite the button markup having a hidden attribute.
Add the following to the module CSS file:
.hecapte-captcha button[hidden] {
display: none;
}
| Comment | File | Size | Author |
|---|
Comments
Comment #2
hexabinaerComment #3
hexabinaerComment #5
tobiasbThanks, I replaced the class with this solution.