Vadim
Forum Replies Created
-
Forum: Plugins
In reply to: [Default Featured Image] importing images into WooCommerce using cronThanks Jan,
Due to client request some time ago we had to remove Default Image plugin, as client added all images for their products and doesn’t need Default Placeholder anymore.
I will use your solution with another client who will require default image.
Thank you!
Forum: Plugins
In reply to: [WP Fastest Cache] New CloudFlare integrationI just did 5 stars! Thank you for your great work on this!
Forum: Plugins
In reply to: [WP Fastest Cache] New CloudFlare integrationGreat, thank you!
Forum: Plugins
In reply to: [Getwid - Gutenberg Blocks] Preload key requests error in Google Page SpeedThank you!
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] Trigger cron not runningOh, sorry. Yes, its solved. I will post our scripts for anyone looking for help.
Yes – quotes did help
curl -k –connect-timeout 7200 “https://domain.com/wp-load.php?import_key=XXX&import_id=1&action=trigger”
/usr/bin/php-cgi /home/domain/web/domain.com/public_html/wp-load.php import_key=XXX import_id=1 action=processing
Forum: Plugins
In reply to: [WP Fastest Cache] Preload by sitemapThank you!
Forum: Plugins
In reply to: [WP Night Mode] dark mode and cached pages problemThank you @ivarvanwooning but we are getting
Uncaught SyntaxError: Invalid or unexpected token
We are using Oxygen, which is not really a theme, but a builder. There is no theme with Oxygen
Maybe there is another way of trying this?
Forum: Plugins
In reply to: [WP Night Mode] dark mode and cached pages problem@markoarula did you found a fix for flashing content?
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] Trigger cron not runningI tried every cron type I was able to find in support tickets:
curl
wget
php
php-cginone of them work for Trigger cron. They don’t trigger import and because of that Processing cron is not triggered too
Forum: Plugins
In reply to: [Default Featured Image] importing images into WooCommerce using cronThank you very much Jan!
So far it seems to be working (cron is still in progress)
Thanks Tobias,
It works for me,
Forum: Plugins
In reply to: [Default Featured Image] importing images into WooCommerce using cronSure, can we get in touch via email? [email protected]
Forum: Plugins
In reply to: [Default Featured Image] importing images into WooCommerce using cronWe are running LiteSpeed server. Maybe crons are called differently there?
Forum: Plugins
In reply to: [Default Featured Image] importing images into WooCommerce using cronUnfortunatelly its not working. Its adding Default Image again:
https://ilumino.lv/product/kabelis-audio-2×0-50-cu-melns-sarkans-a30011/
https://ilumino.lv/product/kabelis-audio-2×1-5-cu-melns-sarkans/
Here is plugin code snippet:
* @return string|array Single metadata value, or array of values */ public function set_dfi_meta_key( $null, $object_id, $meta_key, $single ) { // Only affect thumbnails on the frontend, do allow ajax calls. if ( ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) ) { return $null; } // Exclude Cronjobs. if ( defined( 'DOING_CRON' ) && DOING_CRON ) { return $null; } // Check only empty meta_key and '_thumbnail_id'. if ( ! empty( $meta_key ) && '_thumbnail_id' !== $meta_key ) { return $null; } // Check if this post type supports featured images. if ( ! post_type_supports( get_post_type( $object_id ), 'thumbnail' ) ) { return $null; // post type does not support featured images. }
Forum: Plugins
In reply to: [Default Featured Image] importing images into WooCommerce using cronGreat, thank you so much!
I will update code and run cron in next few hours