Hi
In my webshop : https://www.woolsome.shop I am struggling with its slower performance.
And I realized that on Load .. admin-ajax.php is asking woodmart_load_html_dropdowns
TWICE .. and twice receiving “Can’t load HTML blocks with AJAX” .
And it takes significant time.
I switched it off in child functions.php this way :
remove_action( ‘wp_ajax_woodmart_load_html_dropdowns’, ‘woodmart_load_html_dropdowns_action’, 99999 );
remove_action( ‘wp_ajax_nopriv_woodmart_load_html_dropdowns’, ‘woodmart_load_html_dropdowns_action’, 99999 );
And I do not see that my shop would be broken because of my change.
Can you explain where eventually I would need to have this request for woodmart_load_html_dropdowns available for my shop ?