E Ernomies Member Apr 29, 2020 #1 Hi, is there a way to rearrange these so insert URL would be shown as default?
AndyB Well-known member Apr 29, 2020 #2 You might like this add-on: https://xenforo.com/community/resources/remove-drop-image-option.7239/ Upvote 0 Downvote
Ozzy47 Well-known member Apr 29, 2020 #3 The poster is not asking for an addon to remove it, but how to switch the display order. Upvote 0 Downvote
ShikiSuen Well-known member Apr 30, 2020 #4 Add this to the end of EXTRA.LESS: (DISCLAIMER: I don't know whether this can affect other similar dropdown menus.) Less: .fr-popup.fr-active .fr-buttons { display: flex; flex-flow: row-reverse; justify-content: flex-end; } Upvote 0 Downvote
Add this to the end of EXTRA.LESS: (DISCLAIMER: I don't know whether this can affect other similar dropdown menus.) Less: .fr-popup.fr-active .fr-buttons { display: flex; flex-flow: row-reverse; justify-content: flex-end; }
E Ernomies Member Apr 30, 2020 #5 ShikiSuen said: Add this to the end of EXTRA.LESS: (DISCLAIMER: I don't know whether this can affect other similar dropdown menus.) Less: .fr-popup.fr-active .fr-buttons { display: flex; flex-flow: row-reverse; justify-content: flex-end; } Click to expand... It did rearrange the icons but "drop image" is still shown as default. Upvote 0 Downvote
ShikiSuen said: Add this to the end of EXTRA.LESS: (DISCLAIMER: I don't know whether this can affect other similar dropdown menus.) Less: .fr-popup.fr-active .fr-buttons { display: flex; flex-flow: row-reverse; justify-content: flex-end; } Click to expand... It did rearrange the icons but "drop image" is still shown as default.
ShikiSuen Well-known member Apr 30, 2020 #6 Ernomies said: It did rearrange the icons but "drop image" is still shown as default. Click to expand... I am afraid you may need an addon to hack it. Upvote 0 Downvote
Ernomies said: It did rearrange the icons but "drop image" is still shown as default. Click to expand... I am afraid you may need an addon to hack it.
E Ernomies Member May 1, 2020 #7 ShikiSuen said: I am afraid you may need an addon to hack it. Click to expand... I've now found out it could be done by editing: public_html/js/xf/editor.js config.imageInsertButtons = ['imageByURL']; changing it to -> config.imageInsertButtons = ['imageByURL', 'imageUpload'] Upvote 0 Downvote
ShikiSuen said: I am afraid you may need an addon to hack it. Click to expand... I've now found out it could be done by editing: public_html/js/xf/editor.js config.imageInsertButtons = ['imageByURL']; changing it to -> config.imageInsertButtons = ['imageByURL', 'imageUpload']