3ark5hipley
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress conflicting with PageLinesI found that the @mehdirochdi fix disables the color-picker, I found another fix for the same file (pl-framework\engine\ui\js\editing.js) that puts a form field in place of the defunct color-picker from stackoverflow:
Unminify editing.js and replace:.each(function () { a(this) .wpColorPicker({ change: function (b, c) { var d = a(this); d.val(d.iris("color")).trigger("keyup"); var e = _.debounce( function () { d.trigger("blur"); }, 300, { leading: !1 } ); e(); }, }) .addClass("is-ready loaded"); })
With:
.each(function () { if(a(this).hasOwnProperty('wpColorPicker')) { a(this) .wpColorPicker({ change: function (b, c) { var d = a(this); d.val(d.iris("color")).trigger("keyup"); var e = _.debounce( function () { d.trigger("blur"); }, 300, { leading: !1 } ); e(); }, }) .addClass("is-ready loaded"); } })
- This reply was modified 4 years, 1 month ago by 3ark5hipley.
In troubleshooting, besides ‘Enable jQuery Migrate Helper’, I found that deactivating the WordFence plugin would allow me to view Caldera Form entries. I never had trouble with copying and editing forms, just seeing the form entries.
After upgrading to WP 5.6, I was able to get around Caldera Form admin issues by installing the plugin: ‘Enable jQuery Migrate Helper’
…and then switching between jQuery versions with Tools -> jQuery Migrate
– ‘Default from WordPress’ (while not editing forms)
– ‘Legacy 1.12.4-wp’ (while editing forms)