I guess same issue as these threads -
Are there currently any known issues @sam.morgan or advice how to troubleshoot
Thankyou
I guess same issue as these threads -
Are there currently any known issues @sam.morgan or advice how to troubleshoot
Thankyou
Hi @stevenrichardlevy ! Did you manage to solve this one? Iām experiencing the same with my private plugin for a couple of days now.
This is a bug. Send a bug report. I submitted a bug report and instead of bubble fixing the bug they asked me to paste a script into my developer console. Since Iām a No Coder I couldnāt do it even with the video demonstration so support had to submit my plugin for me.
Maybe with more people reporting the bug they will fix the bug.
Here is link to video from support.
Apparently what I did not do was press enter after pasting in the code.
Thank you @boston85719 !
Same issue - this fixed it.
sorry i missed this! yes the video below was the same solution i was given. Its forcing the plugin not to be minified as far as I underdtand. The issue with this I believe is if you use it in production it might be a bit slower (when you use the test plugin if you check the console it always says the plugin loads slower than normal as its not minified yet). So its a workaround - although in production I am not sure how much it really affects you.
Personally for me there was an error with one of my functions and how it was being initialised - once that was fixed it allowed me to build and minify the plugin. Unfortunately there its quite difficult to debug if you are not a coder (which I am not!)
very useful!
For them who can not open this video: window.do_not_minify_plugin = true
How are you supposed to use this? My first thought was to use it as a URL parameter in the URL but that doesnāt work for meā¦is this supposed to be run via a developer console or something?
Legend
That did it for me as well. Go to your plug-in and choose āSettingsā. Right click on the page and choose āInspectā from the list (near the bottom). That brings up the console window. Click on āConsoleā at the top. Paste this string:
window.do_not_minify_plugin = true
Hit enter. It should reply with ā<trueā
Now hit the āSubmit A New Versionā button and it should work.