Move Product Description V4.2.4

[color=#282828][font=arial, verdana, tahoma, sans-serif]We're trying to figure out how to move the product description. The descriptions are always going to be 1-2 sentences and it would look best in the new location as opposed to where it is currently. I easily moved the SKU code but can't for the life of me get the product description to budge.[/font][/color]



[color=#282828][font=arial, verdana, tahoma, sans-serif]We're in Version 4 and using cs-cart's responsive theme. To move the SKU, I edited the default_template.tpl file and no matter how I change the rest of the code, nothing else changes. I've tried clearing the cache both in the admin and in my browsers. I've tried to edit the original file as well as creating a new template in my_changes. Nothing works. [/font][/color]



[color=#282828][font=arial, verdana, tahoma, sans-serif]Any help would be much appreciated.[/font][/color]



[color=#282828][font=arial, verdana, tahoma, sans-serif]This is the current layout:[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif][/font][/color]



[color=#282828][font=arial, verdana, tahoma, sans-serif]and this is the desired layout:[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif][/font][/color]

Hello,



Open the ‘design/themes/responsive/templates/blocks/product_templates/default_template.tpl’ file and after this code


<br />
{if $smarty.capture.$price|trim}<br />
<div class="ty-product-block__price-actual"><br />
{$smarty.capture.$price nofilter}<br />
</div><br />
{/if}
```<br />
<br />
add this one<br />
<br />
```php
<br />
{if $product.full_description}<br />
{__('description')}<hr><br />
<div {live_edit name="product:full_description:{$product.product_id}"}>{$product.full_description nofilter}</div><br />
{/if}<br />

```<br />
<br />
Then clear CS-Cart cache.<br />
<br />
PS: Cool dog <img src="upload://iKNGSw3qcRIEmXySa8gItY6Gczg.gif" class="bbc_emoticon" alt=":grin:"><br />
<br />
Sincerely yours,<br />
CS-Market.

Will this move just description tab and features will remain in same place?

[quote name='Darius' timestamp='1424937297' post='206465']

Will this move just description tab and features will remain in same place?

[/quote]



Hello,



The Features tab will stay in the same place.This method just adds the Description tab to the necesasary place, but this tab doesn't disappear from its common location.



If it will be necessary to remove the Description tab from its common location at all just go to Administration panel → Design → Product tabs and disable the Description tab.



Sincerely yours,

CS-Market.

Thank you for the response! Initially it didn't work which helped me realize there's a bug with our clear cache. No matter what I did, it just wasn't clearing which explained why my changes weren't working yesterday. I used the “Rebuild cache automatically” feature in the Design > Themes area and it worked perfectly.