hpr78
Forum Replies Created
-
Yes it is. thats why it now has 9 MB and not 300 KB. Integration primary for their own business.
I don’t blame them for that, it is ok. But more transparency for the User before such a huge change would have been nice.
I switch to SMTP Mailer (https://de.www.ads-software.com/plugins/smtp-mailer/) it simply does what it should in 52 KB.
No no no, not now! Now it was bought by a company and a company want visibility. So you got nerved with a unneeded permanent menu entry for a “install&setup&forget”-Plugin.
Forum: Plugins
In reply to: [Contact Form 7] Sendinblue double opt-inSame problem here.
The privacy considerations are not enough to solve this problem.
We MUST send a confirmation mail, not only click a checkbox.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] tax_query relation not workP.s: or is that only in pro Version possible?
Forum: Plugins
In reply to: [Prismatic] Prismatic removes HTML Input-TagsIn one of my gutenberg components i use RawHTML, if this is what you are looking for.
import { RawHTML } from "@wordpress/element" //... return ( <pre className={ classes }> <code className={ codeClasses }> <RawHTML>{ content }</RawHTML> </code> </pre> )
Forum: Plugins
In reply to: [Prismatic] Prismatic removes HTML Input-TagsOr complete without wp_kses_post, cause before you esc_html the content.
Forum: Plugins
In reply to: [Prismatic] Prismatic removes HTML Input-TagsFound the problem in prismatic/inc/prismatic-core.php
it wp_kses_post all the content, not only the prismatic specific content.function prismatic_decode($text) { // ... $output .= $content; } return wp_kses_post($output); }
It should be better to secure only the replaced content:
function prismatic_decode($text) { // ... $output .= wp_kses_post( $content ); } return $output; }
`
Forum: Plugins
In reply to: [Login Lockdown & Protection] Does not blockNo other plugin. Tables exists.
I change “Max Login Retries” from 5 to 3 and it is ok.Forum: Plugins
In reply to: [Login Lockdown & Protection] Does not blockFrom Settings page:
“No IP blocks currently locked out.”