Jump to content

Formatowanie - Przycisk WIĘCEJ


Recommended Posts

Witam, mam następujący problem, przed kliknięciem przycisku więcej tekst jest formatowany w ten sposób : 

 

3yywct.jpg

 

Chciałbym, żeby przed kliknięciem przycisku więcej wyglądało to wszystko tak jak po kliknięciu, czyli następująco : 

 

4tqq0j.jpg

 

W pliku category.tpl nie widzę nic ciekawego.. o to kawałek kodu odpowiadający za działanie przycisku więcej.

        		{if $category->description}
			{if strlen($category->description) > 120}
					<section class='layout'>
					<article class='article'>
						<div class='border'>
							<div class='jarakgrid'>
								<div class='hr'></div>
							<div class="cat_desc clearfix" id="category_description_short">
								{$category->description|strip_tags|truncate:240}
								</span>
							</div>
					<div class="cat_desc clearfix" id="category_description_full" style="display:none">
					{$category->description}
					</div>
					<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>
		</div>
	</div>
</article>
				{else}
			<div class="cat_desc clearfix">{$category->description}</div>
			{/if}
        
            		{/if}
                        </div>

 

Link to comment
Share on other sites

To jest opis kategorii, więc nie może to być cecha produktu.

Powyżej dodałem kod który odpowiada za wyświetlanie się tego.

W kodzie nic nie widać co by za to odpowiadało, więc wydaje mi się,

że jest to zmieniane gdzieś na poziomie kontrolera, chodź głowy nie dam.

Edited by przemek108 (see edit history)
Link to comment
Share on other sites

ja wciąż uważam, że są to cechy produktu ;)

zamiast kodu:

			{if strlen($category->description) > 120}
					<section class='layout'>
					<article class='article'>
						<div class='border'>
							<div class='jarakgrid'>
								<div class='hr'></div>
							<div class="cat_desc clearfix" id="category_description_short">
								{$category->description|strip_tags|truncate:240}
								</span>
							</div>
					<div class="cat_desc clearfix" id="category_description_full" style="display:none">
					{$category->description}
					</div>
					<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>
		</div>
	</div>
</article>
				{else}
			<div class="cat_desc clearfix">{$category->description}</div>
			{/if}

skorzystaj wyłącznie z:
 

<div class="cat_desc clearfix">{$category->description}</div>
Link to comment
Share on other sites

 

ja wciąż uważam, że są to cechy produktu ;)

zamiast kodu:

			{if strlen($category->description) > 120}
					<section class='layout'>
					<article class='article'>
						<div class='border'>
							<div class='jarakgrid'>
								<div class='hr'></div>
							<div class="cat_desc clearfix" id="category_description_short">
								{$category->description|strip_tags|truncate:240}
								</span>
							</div>
					<div class="cat_desc clearfix" id="category_description_full" style="display:none">
					{$category->description}
					</div>
					<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>
		</div>
	</div>
</article>
				{else}
			<div class="cat_desc clearfix">{$category->description}</div>
			{/if}

skorzystaj wyłącznie z:

 

<div class="cat_desc clearfix">{$category->description}</div>

 

No tak, z tym że ja chciałbym aby ten przycisk więcej był! :)

Link to comment
Share on other sites

×
×
  • Create New...