Use this find/replace regex in config.php
to set all modules by a particular vendor to disabled.
Find Tab
(Amasty_[a-z0-9_]+'\s?=>\s?)(1)
Replace Tab
$10
Use this find/replace regex in config.php
to set all modules by a particular vendor to disabled.
(Amasty_[a-z0-9_]+'\s?=>\s?)(1)
$10
This will take out any non-alphanumeric characters and replace them with an underscore
protected function convertTitleToCode($title) { return preg_replace("/[^\w]/i", "_", trim(strtolower($title))); }