-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple not related tgmpa_register actions are coupled #786
Comments
Correct. The whole point of TGMPA is to present the end-user with one list with all plugins registered from various sources. You could let TGMPA use your config by changing the priority on the |
OK, and wouldn't be better to show the source where the requirement and recommendation come from as many plugin can use this. Or maybe it could be handy to add description column. |
Those would be features we'd surely consider if someone would create a PR to that effect. |
So, could it be like this? Maybe? |
@domino2 I don't think that would help.
|
OK, I can imagine some better solution then, but it will take a little bit more time. I will back then. |
Hello It's an old thread, but the issue is still there. And when I say issue it sounds more like a bug to me. I develop a plugin, and at least two the other plugins/themes I use are using the tgmpa library. Let's say "ANOTHER_PLUGIN" and "ANOTHER_THEME" below... When I activate my_plugin, I get a scrambled messsage:
So I changed "this theme" by "this plugin"... But when I activated MY dependencies, the theme notified "This plugin recommends (...) " So if one of the plugins defines custom strings, they could be displayed by any other one, depending on the load priority. Whoever sets the higher priority will scramble messages from other plugins/thems, so priority cannot be a solution. For the record, the "ANOTHER_PLUGIN" I talk about happens to be one of my dependencies, so I can not choose to use the library, it would guarantee at least one of them (this plugin or mine) would display wrong messages. IMHO wp users expect plugins to have their own notification, not notifications from apparently unrelated plugins/themes grouped together. Couldn't we use local or prefixed variables, so each plugin gives its own notifications? I guess that would solve the problem totally. |
Hello, I suppose that you want to offer to users of your plugin a better experience when using it. At least I wanted, but I left that idea (not enough time) and maybe worth to put the responsibility to install dependent plugins on users and mention it in the description for now. Or if you doing it for the business, maybe worth to check some of these articles. I didn't try, but what about this plugin? Or maybe use lightweight alternative to TGM Plugin Activation class. I'm curious what you will end up as I left this problem. |
Thanks for your suggestions, domino2 I think composer is an option on dev side (I use it and it's great) but not for the end user. I am looking for a solution working entirely from the admin area. I actually already made a lightweight alternative: slightly more sophisticated than you example, but still very light). I wanted to give TGMPA a try before pushing development further. As I didn't want to give up, I ended up replacing all prefixes in tgmpa library (tgm, tgmpa, TGMPA, with my plugin prefixes. Although it now works very well (no more conflicts), it's not easy to implement (400+ occurrences of 5 variants) and updates would be a pain. For the record, I also noticed after my message that if two plugins using the class define a different menu slug or parent_slug, one of them produce broken installation links (and as said before, the link used could be anyone of them, whatever the dependency belongs to). |
Downloaded theme is using tgmpa version 2.6.1, I want to use same version in my personal plugin and because the theme one is loaded first, the class TGM_Plugin_Activation is declared from there.
I used Custom TGMPA Generator where I specified unique text domain and function prefix (Name was generated from text domain).
My register hook is like this:
And the issue is that the 'Hello Dolly' plugin appeared in the theme plugin list. So the parent_slug in the plugin's $config is ignored and probably whole $config is also ignored.
The text was updated successfully, but these errors were encountered: