Hi,
Cs-cart gives us a solution here. But using that way, always you have to assign this tab after adding a new product. Right?
I found easier solution and you don’t need to change Cs-cart core:
- You can use ‘my_changes’ addon
- Create a file in skins/[CUSTOMER_ACTIVE_SKIN]/customer/addons/my_changes/blocks/product_tabs/tab_name.tpl and just write that code:
<div id="content_tab_name"> Tab content </div>
```<br />
<br />
3. Ok. Cs-cart define it automatically, but you will see a problem. Cs-cart doesn't change tab name. That code can help you (write it at the end of the same file):<br />
```php
<script type="text/javascript"><br />
$("#block_tab_name").html('<a>Tab Name</a>');<br />
</script>
```<br />
<br />
[SIZE="3"][B]Tip: [/B][/SIZE]<br />
<br />
[B]* Change tab name:[/B] Also, you can change 'Tab Name' with a language variable that you created, such as: {$lang.new_tab_name}<br />
```php
<script type="text/javascript"><br />
$("#block_tab_name").html('<a>[B][COLOR="Red"]{$lang.new_tab_name}[/COLOR][/B]</a>');<br />
</script>
```<br />
<br />
Just try, and enjoy it ;)