Tagged Questions
0
votes
1answer
188 views
Why my Plugin keeps deactivating automatically?
I have a plugin called 'virtual theme' which I downloaded from the plugin directory, and it works great but i noticed sometimes when there's a change it with other plugins it seems to stop working and ...
0
votes
1answer
43 views
Is it possible to run javascript on plugin deactivated?
Is it possible to run javascript on plugin deactivated and if yes then, how should I achieve that.
I have developing one plugin in which two new tables are created in wp database and on deactivation ...
0
votes
2answers
173 views
How to deactivate my plugin upon deactivation of NextGen
i'm writing this plugin and i need to deactivate it when NextGen is deactivated:
<?php
/*
Plugin Name: Plugin Name
Description: Description
Version: 1.0
Author: Author
Author URI: Author URI
*/
...
0
votes
1answer
71 views
My plugin does not install correctly if a previous version is still installed
My plugin only installs correctly if the user first deactivates and then deletes a previously installed version. If they do not delete the previous version, the installation either does not complete ...
0
votes
2answers
128 views
Do you clean up your self-written plugins' at deactivation?
After developing some plugins for myself, some of them is ready to be published. For all, I've written deactivation functions, which deletes the set options, the database, etc. after themselves. But ...