cantoostinato8989
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Extended Search] Search on hidden meta custom fields 2Thank you very much for your prompt response. Now it’s clear.
Forum: Plugins
In reply to: [Kirki Customizer Framework] many problems with plugin kirkiDear friends, we have found the solution of problem on the github. And now – kirki inline styles ( that annoyed us) are being output to external css files.
See this issue https://github.com/kirki-framework/kirki/issues/2186
Onuro commented on 25 Jun 2019 ? It's easy :) Add this to your functions.php However, I stopped using this method to avoid an additional request it creates on each page. It's bad for pagespeed and SEO. /*= Use External stylesheet for Kirki generated styles =*/ /*=============================================<<<<<*/ if (!is_customize_preview() ) { add_filter( 'kirki_output_inline_styles', '__return_false' ); } add_filter( 'kirki/config', function( $config = array() ) { $config['styles_priority'] = 10; return $config; } );
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] AUTO INCREMENT parameter for imgkeyHello, Arno, sorry for the long silence. Yes, our site is not heavily loaded. It is even rarely visited at all. Our site is [ now moved to the link field in the very first post ]
- This reply was modified 3 years, 1 month ago by Jan Dembowski.
- This reply was modified 3 years, 1 month ago by Jan Dembowski.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] AUTO INCREMENT parameter for imgkeyHi Arno,
as we saw in WordPress console of our web-site, 2 days ago you made a new release 3.1.14 for your plugin “Lightbox with PhotoSwipe”. But in this new version 3.1.14, the current bug has not been fixed.
You made the following changes sponsored by someone:
“Added support to use the data-lbwps-gid attribute in Elementor image widgets and image carousel widgets to put images in their own lightbox”It is a pity that you did not pay attention to our problem in the latest version.
We will be happy to update your plugin when our problem is also resolved.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] AUTO INCREMENT parameter for imgkey[19-Jun-2021 00:30:41 UTC] WordPress database returned error Duplicate entry ‘f41252bb12——– –600611c874’ for key ‘PRIMARY’ in response to INSERT INTO wp_lightbox_photoswipe_img (imgkey, created, width, height, exif_camera, exif exif_shutter, exif_iso, exif_datetime) VALUES (“f41252bb——– –a43ed600611c874”, “2021-06-19 00:30:41”, “1920”, “1080”, “”, “”, “”, “”, “”, “” ) executed by require (‘wp-blog-header.php’), require_once (‘wp-includes / template-loader.php’), include (‘/ themes / theme5 / single.php’), get_footer, locate_template, load_template , require_once (‘/ themes / theme5 / footer.php’), wp_footer, do_action (‘wp_footer’), WP_Hook-> do_action, WP_Hook-> apply_filters, call_user_func_array, LightboxPhotoSwipe-> fooreplace, lightbox-end_flut> LightboxPhotoSwipe-> outputCallbackPropertie
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] AUTO INCREMENT parameter for imgkeyYes, the same error
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] AUTO INCREMENT parameter for imgkeyI deselected the option – “Load image captions from database (this can cause delays on slow servers)”. We will see how this affects the errors. Regards!
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] AUTO INCREMENT parameter for imgkeyHello Arno, now it is clear that this is not a number. This is really md5 hash. Not a number and autoincrement are not applicable. Sorry we didn’t pay attention to this right away.
Our tariff plan is on shared hosting, it is quite possible that the problem in the Database arose due to hosting problems. We have no idea how you can check our server.
Thank you very much.
I’m sorry, but the problem was solved in a completely different way. I just changed my internet provider. I currently have new internet provider that provides higher out traffic speeds. After changing the provider – no problems remained.This solved the problem.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] PHP7 and plugin WP News and Scrolling WidgetsMay be like this?
if ( isset( $instance['height'] ) && ! empty( $instance['height'] ) ) { $args['height'] = intval( $instance['height'] ); } if ( isset( $instance['pause'] ) && ! empty( $instance['pause'] ) ) { $args['pause'] = intval( $instance['pause'] ); } if ( isset( $instance['speed'] ) && ! empty( $instance['speed'] ) ) { $args['speed'] = intval( $instance['speed'] ); }
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] PHP7 and plugin WP News and Scrolling WidgetsThank you very much
- This reply was modified 3 years, 11 months ago by cantoostinato8989.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] PHP7 and plugin WP News and Scrolling WidgetsPl, look how it was resolved in file kses.php
Before:
if ( ! isset($allowed_html[strtolower($element)]) || count($allowed_html[strtolower($element)]) == 0 )
After:
if ( ! isset($allowed_html[strtolower($element)]) || empty($allowed_html[strtolower($element)]))
But in your case 0 < count I don’t know how to correct…
- This reply was modified 3 years, 11 months ago by cantoostinato8989.
- This reply was modified 3 years, 11 months ago by cantoostinato8989.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] PHP7 and plugin WP News and Scrolling WidgetsHello, actually this is not error, this is warning
May be you should clean some Details in Properties of File (right click on file) before load it to WordPress Medialibrary. For me it helps too.
Yes, I deleted it manually thanks.
And if anyone is interested, I don’t know what helped, maybe there were some magik actions on the part of my hosting provider, but now I can upload large files.
I don’t know why :))
- This reply was modified 4 years ago by cantoostinato8989.
- This reply was modified 4 years ago by cantoostinato8989.