My Joomla web page has some content that I want to remove (placed in only one page). It was placed using a module, but my site has large number of modules and I can't find which module it is. Is there any way to find module by filtering the page (menu) it placed ? It's a custom HTML module. Help me to find the module name.
The way we do this is searching the content field in the modules table in phpMyAdmin.
If you don't have access to phpMyAdmin, then check open then you can override the layout of the custom HTML module and print the ID of the module there. You can do this by adding the following code:
echo($module->id);
in the file /templates/your-template/html/mod_custom/default.php
. If that file doesn't exist, then you should copy it from modules/mod_custom/tmpl/default.php
(you should create the directory structure under the /templates/your-template/html
folder if it doesn't already exist).