Hi, how does one add a partial to the path? BTW, I have two partials on the page that are located in a different view (i.e. update). For example,
PHP Code:
<?php echo $this->partial( "update/_animal.phtml", array( 'animal' => $this->animal )); ?>
<?php echo $this->partialLoop( "update/_recent.phtml", $this->recents ); ?>
However, I'm getting the following error message:
Fatal error: Uncaught exception 'Zend_View_Exception' with message 'helper 'Partial' not found in path'
I would like to ideally add whatever needs to be added to the boostrapper (i.e. index.php).
Thanks in advance,
-Conrad