X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Moving Category Description? (https://forum.x-cart.com/showthread.php?t=18922)

drudden 12-28-2005 08:25 PM

Moving Category Description?
 
Hi,

I've searched through the forums and I found a lot of helpful posts, but I was unable to find the answer to my exact question.

I am trying to move the Category/Subcategory description so it will be shown below the Category/Subcategory Title instead of above the title.

Can someone tell me which file I need to update and which piece of code I need to move? At one point I tried modifing the subcategories.tpl file, but whatever I tried didn't get the job done. I'm pretty certain this is a simple fix, but I am having problems with it.

Any assistance would be appreciated.

balinor 12-29-2005 03:06 AM

Open subcategories.tpl and replace this:

Code:

{if $active_modules.Bestsellers ne "" and $config.Modules.bestsellers_menu ne "Y"}



{include file="modules/Bestsellers/bestsellers.tpl"}
{/if}



{if $active_modules.Special_Offers}
{include file="modules/Special_Offers/customer/category_offers_short_list.tpl}
{/if}
{if ($navigation_page eq "")||($navigation_page eq "1")}{$current_category.description|regex_replace:"/[\n]/":"
"}

{/if}
{capture name=dialog}


with this:


Code:

{if $active_modules.Bestsellers ne "" and $config.Modules.bestsellers_menu ne "Y"}



{include file="modules/Bestsellers/bestsellers.tpl"}
{/if}{capture name=dialog}



{if $active_modules.Special_Offers}
{include file="modules/Special_Offers/customer/category_offers_short_list.tpl}
{/if}
{if ($navigation_page eq "")||($navigation_page eq "1")}{$current_category.description|regex_replace:"/[\n]/":"
"}

{/if}


drudden 12-29-2005 01:52 PM

Thanks!
 
Thanks for your help. I knew those were the lines I had to modify, but I wasn't 100% sure of where to cut and paste.

Thanks again!


All times are GMT -8. The time now is 02:17 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.