Is it possible to use Classes between WordPress plugins with separate namespaces?
Its likely due to the WordPress load process. Plugins are not all loaded at once. It’s possible that when you in the constructor phase on one plugin the other plugin is not yet loaded. This means you need to “hook” into the “init” of WordPress and check your function or class exists before running your … Read more