Given the information you provided, I can give a general solution.
First you need to find the XML format for this view.phtml. You should look for something like:
<block type="..." name="..." ... template="../view.phtml">
To add an ad for a new template directly below the wrap box, it must be:
<block type="..." name="..." ... template="../view.phtml"> <block type="..." name="phtmlfilename" template="../phtmlfilename.phtml"/> ... </block>
You can also specify the removal unit in another place:
<reference name="[name_of_view.phtml_block]"> <block type="..." name="phtmlfilename" template="../phtmlfilename.phtml"/> </reference>
The type of the new template is the name of the class, which should be core/template or a subtype of it.
vicch source share