saguaros I would like to override things like plugins/system/t3/includes/menu/t3bootstrap.tpl.php. Following the documentation, I would do this by creating a file named t3bootstrap.php in /templates/t3_bs3_blank/html/ with the contents:
function T3BootstrapTpl_render($list)
{
// my override code
}
However, nothing happens. I have also tried naming the file both t3bootstrap.tpl.php and t3bootstrap.php as well as copying the entire file and changing the render() function within - none of these work; they are all ignored. It appears only files within /plugins/system/t3/base-bs3/html/ can be overridden in /templates/t3_bs3_blank/html/.