vesterde
Forum Replies Created
-
I have the same question. I need two because the design we’re using specifies two, and your javascript isn’t written to allow that possibility at all.
Any plans to make it easier to do?
Forum: Plugins
In reply to: [WP Term Images] Modal window on edit term screenIn case anyone needs to fix this for themselves before an update comes along:
Open the file term-image.js, located in the assets/js folder of the plugin. Lines 22 and 40 contain
$( '#addtag' ).on( 'click'etc….Change both of them to
$( '#addtag, #edittag' ).on( 'click'etc…You’re done.
Forum: Plugins
In reply to: [WP Term Images] Modal window on edit term screenI have encountered this too. Editing a term image is pretty difficult if you can’t choose files…
Forum: Fixing WordPress
In reply to: how to disable the Inline Linking tool from WP 4.5 ?I mentioned your solution here, I hope you don’t mind.
Forum: Fixing WordPress
In reply to: how to disable the Inline Linking tool from WP 4.5 ?Ah, nice, that looks better 🙂 I was doing this during an uneventful day of work, I obviously didnt consider alternatives to the first idea I had.
Forum: Fixing WordPress
In reply to: how to disable the Inline Linking tool from WP 4.5 ?I made a quickfix plugin that skips the inline part of the process and just opens the old link editor modal. Perhaps someone will find it useful.
It’s a bit of a hack though, don’t depend on it working 100%.