How do I tell which view is being called by the load template call. For example from the user/registration view there are calls for:
echo $this->loadTemplate('bootstrap');
However there is are two bootstrap views "custom_fields_bootstrap" and "registration_bootstrap"
I am having similar problems understanding
$this->type = 'address';
echo $this->loadTemplate();
Since there are multiple address views.
Basically, I am trying to track down where the all the code that generates the HTML code for the various registration fields in the login switcher as shown in the screenshot. I have found the code for the login radiolist on the left thanks to your comments. I hope you can help.