Debug Block

Hello,



I create custom addon. It consist of 3 files



addon.xml - nothing special, just couple of settings.

schemas/block_manager/blocks.post.php - add template for a block


<br />
    'templates' => array (<br />
        'addons/loo_slider/blocks/slider.tpl' => array()        <br />
    ),
```<br />
<br />
[b]addons/loo_slider/blocks/slider.tpl[/b] - template file <br />
<br />
<br />
```php
<br />
{** block-description:slider2 **}<br />
<div><br />
    <h1>H34</h1><br />
    TEst tt<br />
</div>
```<br />
<br />
Install addon, activate addon, add block via Layout editor in Admin panel - works fine.<br />
<br />
Now I need to customize my template file. I change code in [b]addons/loo_slider/blocks/slider.tpl [/b]file.<br />
Clear cache (Admin panel option, add to url &cc, add to url &ctpl)<br />
Nothing changed in front-end.<br />
<br />
Changes applies only after addon uninstall/install procedure.<br />
<br />
How to see template file changes on front-end? <br />
<br />
Thank you.