I have created a custom module and am trying to include a block just after Shopping cart table and before Totals box. But I am unable to get it in that exact place. I can get my block to appear in content section just below everything else but not in between.If I override checkout.xml and cart.phtml then I can achieve where I want to display my block but I dont want to override the existing files, hence my custom module. Could some one point out what is it that I' missing or doing wrong.Here's my module code,\[code\]app/code/local/CM/Test/etc/config.xml\[/code\]\[code\]<?xml version="1.0"?><config><modules> <CM_Test> <version>0.1.0</version> </CM_Test></modules><frontend> <routers> <test> <use>standard</use> <args> <module>CM_Test</module> <frontName>test</frontName> </args> </test> </routers> <layout> <updates> <cm_test module="CM_Test"> <file>test.xml</file> </cm_test> </updates> </layout></frontend><global><blocks> <test> <class>CM_Test_Block</class> </test></blocks></global></config>\[/code\]\[code\]app/code/local/CM/Test/Block/Somblock.php\[/code\]\[code\] <?php class CM_Test_Block_Somblock extends Mage_Core_Block_Template { protected function _construct() { parent::_construct(); $this->setTemplate('test/testing.phtml'); } public function methodBlock() { return 'informations about my block !!' ; }}\[/code\]\[code\]app/code/local/CM/Test/controllers/IndexController.php\[/code\]\[code\] <?php class CM_Test_IndexController extends Mage_Core_Controller_Front_Action { public function indexAction() { $this->loadLayout(); $this->renderLayout(); } public function somethingAction() { echo 'test mamethode'; } }\[/code\]\[code\]app/design/frontend/mytheme/layout/test.xml\[/code\]\[code\] <layout version="0.1.0"> <default></default> <test_index_index> <reference name="root"> <action method="setTemplate"><template>page/2columns-right.phtml</template> </action> </reference> <reference name="content"> <block type="test/somblock" name="test.somblock" template="test/testing.phtml"/> </reference> </test_index_index> <checkout_cart_index> <reference name="checkout.cart.form.before"> <block type="test/somblock" name="test.somblock"> <action method="setTemplate"><template>test/testing.phtml</template></action> </block> <block type="test/somblock" name="test.somblock" template="test/smtesting.phtml"/> </reference> </checkout_cart_index> </layout>\[/code\]\[code\]app/design/frontend/default/mytheme/template/test/testing.phtml\[/code\]\[code\] TESTING <br/> <?php echo $this->getChildHtml('testing.somblock'); echo "HELLO";\[/code\]\[code\]app/design/frontend/default/mytheme/template/test/smtesting.phtml\[/code\]\[code\] <?php echo $this->methodBlock();\[/code\]\[code\]app/etc/modules/CM_Test.xml\[/code\]\[code\] <?xml version="1.0"?> <config> <modules> <CM_Test> <codePool>local</codePool> <active>true</active> </CM_Test></modules></config>\[/code\]When I accessed http://mydomain.com/test/index/index it gave me the following o/p\[code\]TESTINGHELLO\[/code\]When I accessed http://mydomain.com/checkout/cart/index it gave me the following o/p
But I need the output \[code\]information about my block\[/code\] just after shopping cart table and above Subtotals box, how do i do that?