Magento – Payment Information block in view order

adminhtmlblocksorders

for orders paid by credit card I have the name of the payment that appears in the block 'payment information' but orders with a custom-paying mode I just have this 'Order Placed WAS using EUR'

I don't find how add this information.

Best Answer

Another way to see the template location is to :

  • Enable Admin Template Path Hints (since different payment method uses different folder naming structure in there block folder)

See

Method 1

 INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`)
   VALUES ('websites', '0', 'dev/debug/template_hints', '1');

Method 2

Create a custom module with config.xml

<config>    
    ...    
    <stores>
        <admin>
            <dev>
                <debug>
                    <template_hints>1</template_hints>
                    <template_hints_blocks>1</template_hints_blocks>
                </debug>
            </dev>
        </admin>
    </stores>    
</config>