If at all possible, please invest and donate to open source projects. Like, even a one-time $5 donation is better than nothing because it adds up for the developers, and it allows them to continue maintaining your project, help with bugs, add features, and more.
If you use the backuply plugin for WordPress, like I currently do. There is a promotion banner that popups regularly. If you apply the following steps, you can quiet it (for now).
- Log into your WordPress hosts from the command-line (or using phpAdmin), but I don’t have phpAdmin so modify as appropriate to apply this patch
- Navigate to the backuply plugin path
- cd ${WORDPRESS_ROOT}/wp-content/plugins/backuply
- Create a copy of main/settings.php
cp main/setting.php main/settings.php.bak
- Modify main/settings.php as follows:
--- main/settings.php.bak 2023-09-30 16:55:29.195382000 -0500
+++ main/settings.php 2023-09-25 17:33:42.372070000 -0500
@@ -2144,11 +2144,11 @@
</td>
<td valign="top">
<?php
if(!defined('SITEPAD')) {
- backuply_promotion_tmpl();
+ //backuply_promotion_tmpl();
}
?>
</td>
</tr>
</table>
- Exit from the wordpress host
- Done
This patch will undoubtedly be overwritten when the plugin receives an update. So, probably keep the patch handy (possibly using diff(1) and patch(1)) or keep the a backup file handy as a reference.