You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we're using plugins_url() without a plugin qualifier and assuming that Wordpress installs the plugin under the directory pluginName. This isn't always the case - sometimes it doesn't detect that the plugin is a duplicate and reinstalls it in a new directory, pluginName-X where X is the number of times it's been reinstalled.
If we move calls to plugins_url() to use __FILE__ as an argument, it should fix the issue.
The text was updated successfully, but these errors were encountered:
Currently we're using
plugins_url()
without a plugin qualifier and assuming that Wordpress installs the plugin under the directorypluginName
. This isn't always the case - sometimes it doesn't detect that the plugin is a duplicate and reinstalls it in a new directory,pluginName-X
where X is the number of times it's been reinstalled.If we move calls to
plugins_url()
to use__FILE__
as an argument, it should fix the issue.The text was updated successfully, but these errors were encountered: