Hello
I have installed this plugin but while activated this and try to uploading the multiple images from BO, it is not uploading the images I have tried many time but still same.
Regards
]]>I’m using this plugin with Toolset’s Types plugin. I have deactivated all plugins and set to the default theme. Reactivating each plugin reveals this plugin is causing the error, which is: I can’t save any text with quotes (“”) in the custom post fields I have created with Types—this Multiple Taxonomy Images plugin erases the quotes and any text within them when I save the post. They work fine with this plugin deactivated. Any chance of the dev fixing this?
]]>From source:
public function change_button_text($safe_text, $text) {
return str_replace( __(“Insert into Post”,”cvti”), __(“Use this image”,”cvti”), $text);
}
esc_attrs: https://developer.www.ads-software.com/reference/functions/esc_attr/
So you are applying changes to original text.
I think you need to change $text to $safe_text.