Cuando tengamos un error de este estilo:
[PrestaShop] Fatal error in module file :/home/usuario/domains/tudominio.com/public_html/web2018/classes/db/DbPDO.php:
Call to a member function rowCount() on boolean
Abrimos el archivo/themeconfigurator/themeconfigurator.php.
En la linea 397 tenemos este texto:
Db::getInstance()->delete(DB_PREFIX.’themeconfigurator’, ‘id_item = ‘.(int)$id_item);
Lo sustituimos por este:
Db::getInstance()->delete(‘themeconfigurator’, ‘id_item = ‘.(int)$id_item);
Guardamos y probamos de nuevo a eliminar alguna imagen del theme configurator y deberÃa funcionar todo OK.