Jump to content

[solved] purchased theme category description error


Recommended Posts

Hello there,

 

I hope this is the right place to post this, I'm still getting to know Presta Shop. I have researchd the forum for this issue but can't seem to find it anywhere.

 

I have wrote the devellopers too, but never got an answer.

 

I have purchased the 01premium theme, and I'm finding out that in my categories description, in the front office, I only get to have the first line displayed, and not even completely, without even any option to expand the descritpion (but I'd rather prefer my customers not having to expand anything).

 

I don't know if it's a known issue, nor where to solve this, but it is very important for me. I am still pretty unfamiliar with Presta Shop and not familiar with coding, but with logical thoughts and deductions I have made my way through more or less, so any help with details clear enough for a brute to understand will be greatly appreciated :P

 

Thank you very much!

Link to comment
Share on other sites

we don't know sources of this template - so it's really hard to help.

if it is possible - please paste here contents of category.tpl file located in your theme directory.

I think that the problem is there.

Link to comment
Share on other sites

<p>Thank you vekia, I did not think I was goint to get anybody interested on the week end :), sorry for the late reply. Here is the content of category.tpl , of the theme:</p>

<p> </p>

<pre style="color: rgb(0, 0, 0); font-size: 11px;">

{*

* 2007-2012 PrestaShop

*

* NOTICE OF LICENSE

*

* This source file is subject to the Academic Free License (AFL 3.0)

* that is bundled with this package in the file LICENSE.txt.

* It is also available through the world-wide-web at this URL:

* http://opensource.org/licenses/afl-3.0.php

* If you did not receive a copy of the license and are unable to

* obtain it through the world-wide-web, please send an email

* to [email protected] so we can send you a copy immediately.

*

* DISCLAIMER

*

* Do not edit or add to this file if you wish to upgrade PrestaShop to newer

* versions in the future. If you wish to customize PrestaShop for your

* needs please refer to http://www.prestashop.com for more information.

*

* @author PrestaShop SA <[email protected]>

* @copyright 2007-2012 PrestaShop SA

* @version Release: $Revision: 6844 $

* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)

* International Registered Trademark & Property of PrestaShop SA

*}

 

{include file="$tpl_dir./breadcrumb.tpl"}

{include file="$tpl_dir./errors.tpl"}

 

{if isset($category)}

{if $category->id AND $category->active}

<h1>

{strip}

{$category->name|escape:'htmlall':'UTF-8'}

{if isset($categoryNameComplement)}

{$categoryNameComplement|escape:'htmlall':'UTF-8'}

{/if}

{/strip}

</h1>

 

{*<div class="resumecat category-product-count">

{include file="$tpl_dir./category-count.tpl"}

</div>*}

 

{if $scenes || $category->description || $category->id_image}

<div class="content_scene_cat">

{if $scenes}

<!-- Scenes -->

{include file="$tpl_dir./scenes.tpl" scenes=$scenes}

{else}

<!-- Category image -->

{if $category->id_image}

<div class="align_center">

<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_01prem')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" />

</div>

{/if}

{/if}

 

{if $category->description}

<div class="cat_desc">

{if strlen($category->description) > 120}

<p id="category_description_short">{$category->description|truncate:120}</p>

<p id="category_description_full" style="display:none">{$category->description}</p>

<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>

{else}

<p>{$category->description}</p>

{/if}

</div>

{/if}

</div>

{/if}

{*

{if isset($subcategories)}

<!-- Subcategories -->

<div id="subcategories">

<h3>{l s='Subcategories'}</h3>

<ul class="inline_list clearfix">

{foreach from=$subcategories item=subcategory}

<li>

<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">

{if $subcategory.id_image}

<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'subcat_01prem')}" alt="" class="img" />

{/if}

<div class="content">

<h2>{$subcategory.name|escape:'htmlall':'UTF-8'}</h2>

</div>

</a>

</li>

{/foreach}

</ul>

</div>

{/if}

*}

 

{if $products}

<div class="sortPagiBar clearfix">

{include file="./product-sort.tpl"}

{include file="./nbr-product-page.tpl"}

{include file="./product-toggle-view.tpl"}

{include file="./product-compare.tpl"}

</div>

 

<div id="product_list_container" {if (isset($category_view))}class="{$category_view}"{/if}>

{include file="./product-list.tpl" products=$products}

</div>

 

<div class="sortPagiBar clearfix">

{include file="./product-compare.tpl"}

</div>

{include file="./pagination.tpl"}

{/if}

{elseif $category->id}

<p class="warning">{l s='This category is currently unavailable.'}</p>

{/if}

{/if}</pre>

 

Link to comment
Share on other sites

you're welcome B)

I'm really glad that I could help you in this case :)

 

now i can go ahead and mark this thread as solved :)

 

When your shop will be ready - please share it in the TEST MY SITE section

i'm curious about your shop ;)

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...