I have inherited a multi-site in Drupal 7. There is a page where the client needs to edit the title element but this page is not a content type, a block or a taxonomy item!? I have queried the db and found only one instance of the value which needs to be changed. It is stored in the Variable table. If I change the value here the value changes as expected on the site. Can anyone shed any light on where the administration page is likely to be for this value based on the location of the value? I guess this could be defined anywhere really but was hoping someone may have come across this before.
The values of variables in Drupal can be set in a couple of ways:
variable_set()
function.system_settings_form()
function.system_settings_form
. Then find out where this form is rendered - might be at some menu. After which you can change the value of this variable from the form itself.