skip to Main Content

Disable multiple size image generation for Woocommerce uploaded images only

I have a theme that generates 11 different sized images for every image uploaded. set_post_thumbnail_size( 220, 150, true); add_image_size( 'redmag-blog-list', 491, 280, true); add_image_size( 'redmag-blog-list-large', 614, 320, true); add_image_size( 'redmag-sidebar', 100 ,100, true); add_image_size( 'redmag-blog-grid', 496, 290, true); add_image_size( 'redmag-blog-tran',…

VIEW QUESTION

Woocommerce – WordPress cron – event added to queue but not firing

I am trying to hook into the woocommerce_order_status_changed action and add a single event to the wp cron to execute immediately (so that the request-response cycle is not blocked): add_action('woocommerce_order_status_changed', 'on_new_status', 10, 3); add_action('send_new_status_custom_hook', 'logic_on_new_status', 10, 2); function on_new_status($order_id, $from,…

VIEW QUESTION
Back To Top
Search