I was able to do it in the past without any workaround. I didn’t undesrtand the reason I’m forced to fill those attributes I’m not gonna use.
That’s an all or nothing approach. What I want is hide alt attribute only for some images (some images are not meaningful or they don’t need a description)
Btw, I’ve edited /code/class.php on line 1350 (3rd and 5th params) :
wp_enqueue_script("gdsr_script", plugins_url($js_name), array(), $this->o["version"]);
new version:
wp_enqueue_script("gdsr_script", plugins_url($js_name), array('jquery'), $this->o["version"],false);
line 1837:
wp_enqueue_script('gdsr',$this->plugin_url.$js_name,array('jquery'),false,true);