Mainbox_general template and my_changes

Hi,

I purchased a custom skin for ver3 and found that the authors hard-codes some text, formatting and links in the mainbox_general.tpl file.

I put the text in the Languages database, but I'd like to move the html between the div tags to my_changes, so upgrades will be smoother. (I'm determined to use my_changes with ver3 from here on out for all customization). I just don't know what to add to my_changes to do this.

Any help would be appreciated.



Here is the contents of the mainbox_general template (I want to move the content between the /hook and /h1 tags so the template is not modified):

```php {if $content|trim}

{if $anchor}



{/if}


{if $title || $smarty.capture.title|trim}


{hook name="wrapper:mainbox_general_title"}
{if $smarty.capture.title|trim}
{$smarty.capture.title}
{else}
{$title}
{/if}
{/hook}



{$lang.collections_detail}








{/if}

{$content|unescape}


{/if} ```

Any help to point me in the right direction would be greatly appreciated. I'm using my_changes for changes to the style sheet already.

If I understand you correctly all you need to do is move the content between the hook to customer/addons/my_changes/hooks/wrapper/mainbox_general_title.override.tpl.

Thank you. That's what I needed.