Ivan Privalov
Forum Replies Created
-
I don’t have this extension, and tried to edit the pages in Chrome. Firefox and Edge with no success.
All my Back-end pages turned into an identical ‘This block has encountered an error and cannot be previewed’ mess after WordPress Core update to 6.5.3Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Seconds: $end_time;What?
Have a look at the sitemap-core.php, line: 2178
$this->add_element( new GoogleSitemapGeneratorDebugEntry( ‘Request ID: ‘ . md5( microtime() ) . ‘; Queries for sitemap: ‘ . ( $GLOBALS[‘wpdb’]->num_queries – $start_queries ) . ‘; Total queries: ‘ . $GLOBALS[‘wpdb’]->num_queries . ‘; Seconds: $end_time; Memory for sitemap: ‘ . ( ( memory_get_peak_usage( true ) – $start_memory ) / 1024 / 1024 ) . ‘MB; Total memory: ‘ . ( memory_get_peak_usage( true ) / 1024 / 1024 ) . ‘MB’ ) );It happens above PHP 8
Constant FILTER_SANITIZE_STRING is deprecated in ContactStorageExportService.?php.
The issue particularly affects sites running on PHP version 8.1. 0 or laterForum: Plugins
In reply to: [Genesis Taxonomy Images] UpdateWow, great news. Appreciated!
Forum: Reviews
In reply to: [Admin Columns for ACF Fields] Great plugin with a Fatal ErrorThank you, Florian Eickhorst, I will gladly give it a try in one of my new projects. Appreciate your work a lot!
Forum: Plugins
In reply to: [Genesis Taxonomy Images] UpdateSeems like the plugin owner is done with this plugin long time ago.
I love this plugin and use it on some of my sites as well.Forum: Plugins
In reply to: [CAOS | Host Google Analytics Locally] caos_local_file_url filterOne other thing, I expected those filters to affect the output out of the box and did not know I was supposed to Save the plugin settings OR Regenerate Alias(es) in order to generate the script’s copy with the new filename.
Forum: Plugins
In reply to: [CAOS | Host Google Analytics Locally] caos_local_file_url filterHello Daan, the add_filter(‘caos_local_dir’, ‘theme_caos_local_dir’); creates no folder and even if the folder was manually created, the filter does not save the file if I set it to, say:
function wpo_caos_local_dir($path) {
return content_url() . ‘/ga4/’;
}
At the same it does shoot an error if I miss the ending slash with:
return content_url() . ‘/ga4’;
BUT since this filter actually duplicates the ‘Cache directory for Gtag.js’ plugin setting I see no reason to use it anyway.
I therefore specified the directory path using the plugin’s settings and simply used the following filter to manually and permanently specify the filename of the downloaded library that is then served in the code and used by subdomains:
add_filter(‘caos_file_alias’, ‘wpo_caos_file_alias’);
function wpo_caos_file_alias($filename) {
? return ‘ga4.js’;
}Forum: Plugins
In reply to: [CAOS | Host Google Analytics Locally] caos_local_file_url filterCurrently the caos_local_file_url filter only changes the URL of the GA JavaScript’s path+filename in the output code but does not affect where the downloaded GA file is actually stored [why would I want to modify the path+filename if it is never created there].
I would expect to be able to specify the stable [non-dynamic] path+filename of the CAOS-updated GA library with this filter:
add_filter(‘caos_local_file_url’, ‘caos_local_file_url’);
function caos_local_file_url($url) {
return content_url() . ‘/uploads/caos/ga4.js’;
}
In this case this downloaded GA is then used by the other local products outside the WordPress.Forum: Plugins
In reply to: [CAOS | Host Google Analytics Locally] caos_local_file_url filterWe need a way to manually specify the path and the constant filename of the downloaded script.
Forum: Plugins
In reply to: [Simple Cloudflare Turnstile - CAPTCHA Alternative] Empty paragraphs wrapThank you for your response, Elliot.
I have the Turnstile with no empty lines around, such as:
< div class=”one-half half sidebar-full”>[cf7-simple-turnstile]< / div>
shortcode but even then output code looks like:
< div class=”one-half half sidebar-full”>< p>< / p>< div class=”cf7-cf-turnstile”…Forum: Plugins
In reply to: [WP Chords] SEO Effect of Chords in textAdditionally, it would be awesome to have an option to mark the
[verse label=”Some text”][/verse]
&
[chorus label=”Some text”][/chorus]
within [wpchords][/wpchords]
and have it properly indented.Forum: Plugins
In reply to: [Yoast SEO] FILTER_SANITIZE_STRING is deprecated in PHP v.8.1Maybellyne, was the ticket solved already?
Forum: Plugins
In reply to: [Yoast SEO] FILTER_SANITIZE_STRING is deprecated in PHP v.8.1In the back-end the warning is also raised by:
[31-Oct-2022 18:07:36 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in ..\wp-content\plugins\wordpress-seo\src\integrations\admin\helpscout-beacon.php on line 110
[31-Oct-2022 18:07:36 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in ..\wp-content\plugins\wordpress-seo\src\conditionals\admin\estimated-reading-time-conditional.php on line 46
Forum: Plugins
In reply to: [Yoast SEO] Php 8.1 deprecation WarningI am getting the same warning at my WP. 6.0.3 under PHP v.8.1:
PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated[31-Oct-2022 17:53:56 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in \wp-content\plugins\wordpress-seo\src\conditionals\third-party\elementor-edit-conditional.php on line 22
[31-Oct-2022 17:53:56 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in \wp-content\plugins\wordpress-seo\src\conditionals\third-party\elementor-edit-conditional.php on line 28
Please fix.