Jakub
Forum Replies Created
-
Forum: Plugins
In reply to: [Database Addon for Contact Form 7 - CFDB7] Prevent saving attachments?This helps me:
add_filter( ‘cfdb7_before_save_data’, function ( $form_data ) {
$upload_dir = wp_upload_dir();
$cfdb7_dirname = $upload_dir[‘basedir’] . ‘/cfdb7_uploads’;
foreach ( $form_data as $key => $val ) {
if ( str_contains( $key, ‘cfdb7_file’ ) ) {
$file = $cfdb7_dirname . ‘/’ . $val;
unset( $form_data[ $key ] );
unlink( $file );
}
}return $form_data;
} );- This reply was modified 11 months, 1 week ago by Jakub.
Forum: Plugins
In reply to: [WP Search with Algolia] Search authorHi, i need search in authors archives – a change slug from author => o-nas so default slug was:
https://dostupnyadvokat.cz/author/ondrej-preussand my custom author page is
https://dostupnyadvokat.cz/o-nas/ondrej-preussits not post url but author
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Right way to add new sizeHi again,
I do it but it optimize only new not optimized images when I run bulk Bulk Optimization – I need to optimize all images again with new sizes and preserve old images. I expect, that there is maybe some option which I must delete in db?
Thanks
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Right way to add new sizeThanks a lot!
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Right way to add new sizeHi @tinypng
thanks for quick reply – so next steps are:
- set Do not compress new images auto
- add new sizes to WP
- in plugin settings Select image sizes to be compressed – I choose only new sizes
- Regenerate Thumbnail bulk regenerate only new sizes
- Bulk compress all images via TinyPNG
- Set back settings Compress new images in the background (Recommended)
- Select image sizes to be compressed – I choose all wanted sizes
Is this way right?
Thanks
Forum: Plugins
In reply to: [WPCF 7 reCaptcha Defer] grecapcha not definedHello, I have same issue. I use it for footer newsletter. This issue I see only if I’m logged into admin.
Complete info from console:
========= reCAPTCHA script loading ========
VM473:1 Uncaught ReferenceError: grecaptcha is not defined
at addEventsAndStuff (:1:530)
at :1:1149
at rm-wpcf7-recaptcha-defer-recaptcha.js?ver=1.0:59:10
addEventsAndStuff @ VM473:1
(anonymous) @ VM473:1
(anonymous) @ rm-wpcf7-recaptcha-defer-recaptcha.js?ver=1.0:59
setTimeout (async)
(anonymous) @ rm-wpcf7-recaptcha-defer-recaptcha.js?ver=1.0:58
dispatch @ jquery.min.js?ver=3.6.4:2
y.handle @ jquery.min.js?ver=3.6.4:2- This reply was modified 2 years, 10 months ago by Jakub.
Forum: Plugins
In reply to: [Enable Media Replace] Enable Media Replace plugin compatibility with PHP 8.2Forum: Plugins
In reply to: [ManageWP Worker] PHP 8 compatibilityHi Miljana,
there are still some deprecateds after cleaning db:
strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated 1
wp-includes/functions.php:7022 – from:MWP_WordPress_Context->addSubMenuPage()
/worker/src/MWP/EventListener/PublicRequest/AddStatusPage.php:44
str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated 1
wp-includes/functions.php:2162 – from:wp-content/plugins/worker/src/MWP/WordPress/Context.php:770
MWP_WordPress_Context->addSubMenuPage()
base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated 1
wp-content/plugins/worker/src/MWP/Worker/Request.php:198First and second are maybe from WP core, third looks that it is form plugin
Forum: Plugins
In reply to: [Enable Media Replace] Enable Media Replace plugin compatibility with PHP 8.1Hi, it will be great if is there support of PHP 8.2 – there is only one deprecated :
Creation of dynamic property EnableMediaReplace\EnableMediaReplacePlugin::$plugin_url is deprecated 1
wp-content/plugins/enable-media-replace/classes/emr-plugin.php:116Thanks a lot
Forum: Plugins
In reply to: [ManageWP Worker] PHP 8 compatibilityHi Stefan,
there is some depricated function with PHP 8.2. Can you fix it please?
Thanks
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] URL Parameters not workingHi,
thanks a lot – it works now!
Regards
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] URL Parameters not workingHi,
thank for fast reply. Now it’s enabled.
Thanks a lot
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Exclude – from deliminerThank for fast reply, it works!
No, it’s only lower alphabet without spaces, numbers and special chars. For better understand it’s redirect me to same page as if I want to go directly to https://www.example.com/wp-admin with this feature
Hi nlpro,
WP version is 5.8.1, iThemes 8.0.2 (both are up to date).
Thanks