Normally I like the way Bedrock has all themes and plugins in Composer, but I have some smaller clients that I host on a small DO droplet that I run with Trellis. Updating their plugins and themes is a bit of a pain with Composer, and I am looking if there’s a possibility to update them in the WP admin directly (or through something like ManageWP).
By setting Config::define('DISALLOW_FILE_MODS', false);
in /config/environments/production.php
I’ve enabled the option to install plugins and themes through the WordPress admin dashboard, but whenever I deploy my custom theme or plugin, it will overwrite any plugins or themes I’ve installed through the WordPress admin dashboard.
I found a thread that gives a solution to this problem by excluding the themes and/or plugins folders from the release, but if I add plugins and themes to project_shared_children
, my own themes and plugins don’t get deployed.
Is there any way to deploy my themes/plugins and not manage the other plugins through Composer?