manuka
Forum Replies Created
-
Forum: Plugins
In reply to: [PVB Contact Form 7 Calculator Add-on] two digits after kommaBeautiful!!! Thank you
Forum: Plugins
In reply to: [Contact Form 7] Second Shortcode Attribute neededok, solved it now…
??In case anyone interested:
add_filter( ‘shortcode_atts_wpcf7’, ‘custom_shortcode_atts_wpcf7_filter’, 10, 3 );
function custom_shortcode_atts_wpcf7_filter( $out, $pairs, $atts ) {
$my_attr1 = ‘destination-email’;
if ( isset( $atts[$my_attr1] ) ) {
$out[$my_attr1] = $atts[$my_attr1];
}
return $out;
}add_filter( ‘shortcode_atts_wpcf7’, ‘custom_shortcode_atts_wpcf7_filter2’, 10, 3 );
function custom_shortcode_atts_wpcf7_filter2( $out, $pairs, $atts ) {
$my_attr2 = ‘subject’;
if ( isset( $atts[$my_attr2] ) ) {
$out[$my_attr2] = $atts[$my_attr2];
}
return $out;
}Forum: Plugins
In reply to: [Watu Quiz] GDPR ComplianceThank you very much
Forum: Plugins
In reply to: [Fast Secure Contact Form] FS Contact Form no longer in WP Market?@iamhere: I did some research and will do the same. which captcha plugin do you integrate? Do you use the google captcha plugin (recaptcha) for it? To me this option (suggested by the plugin developer) seems a little to much talking to third party (api key). thx for reply.
Forum: Plugins
In reply to: [Fast Secure Contact Form] FS Contact Form no longer in WP Market?@ Mike: you are a real star. thank you for providing a link to a clean version. I really loved your plugin. It has done / is doing a wonderful job. I wish you best of happiness in life.
I know too little about programming/hacking: Could there anyhow arise any security issues in future or is it safe to use the clean version for the next ten years or so – even though it’s not officially listed anymore?
- This reply was modified 7 years, 3 months ago by manuka.
Forum: Plugins
In reply to: [Calendar] display a calender for just one categorymany thanks!
great plugin.