We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since Joomla 3.10.0 remoteimage has at least one issue.
When clicking on select image in the second tab of the content editor, remoteimage opens up.
When selecting an image and clicking Insert nothing happens. No error is shown in the browser console, nothing in the network tab.
Chrome browser.
Otherwise remoteimage is working for uploading and scaling images.
Cheers Don
The text was updated successfully, but these errors were encountered:
``I had the same problem and i changed follow lines in /administrator/components/com_remoteimage/view/manager/tmpl/default.php at the line 243-249:
Old:
<button id="rm-insert-button" class="btn btn-primary" onclick="<?php echo $fieldid ? 'insertFormField();' : 'insertImageToParent();'; ?>"> <?php echo JText::_('COM_REMOTEIMAGE_INSERT_IMAGES'); ?> </button><button id="rm-cancel-button" class="btn" onclick="window.parent.SqueezeBox.close();"> <?php echo JText::_('JLIB_HTML_BEHAVIOR_CLOSE'); ?> </button>
to:
<button class="btn btn-success button-save-selected" type="button" onclick="<?php echo $fieldid ? 'insertFormField();' : 'insertImageToParent();'; ?>" data-dismiss="modal"><?php echo JText::_('Einfügen'); ?></button> <button class="btn button-cancel" type="button" onclick="window.parent.jQuery('.modal.in').modal('hide');" data-dismiss="modal"><?php echo JText::_('Schliessen'); ?></button>
Sorry, something went wrong.
No branches or pull requests
Since Joomla 3.10.0 remoteimage has at least one issue.
When clicking on select image in the second tab of the content editor, remoteimage opens up.
When selecting an image and clicking Insert nothing happens. No error is shown in the browser console, nothing in the network tab.
Chrome browser.
Otherwise remoteimage is working for uploading and scaling images.
Cheers
Don
The text was updated successfully, but these errors were encountered: