Jump to content

Mouseover kod fel


HeleneZ

Recommended Posts

Har haft samma problem. Löste det genom att redigera category-tree-branch.tpl (blockcategories i "Din butik" -> themes -> "Ditt tema" -> modules -> blockcategories). Kan va så att ditt tema inte har en särskild fil för detta och då får du redigera den som finns i "Din butik" -> modules -> blockcategories.

 

Rad 28 (eller i närheten) som gäller, ser ut ungefär så här

title="{$node.desc|strip_tags|trim|truncate:255:'...'|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a>

Ändra till:

title="{$node.desc|strip_tags|trim|truncate:255:'...'}">{$node.name|escape:'html':'UTF-8'}</a>

Kort och gott, det är |escape:'html':'UTF-8' som ska bort :)

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

Tack, hittade filen och raden i mitt tema/moduler/blockcategories i mitt tema där jag ändrade från:
 

<a
    href="{$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">
        {$node.name|escape:'html':'UTF-8'}
    </a>

Till

<a 
	href="{$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim'}">
		{$node.name|escape:'html':'UTF-8'}
	</a>

Är det rätt? Verkar inte som det fungerar.

 

Link to comment
Share on other sites

<li {if isset($last) && $last == 'true'}class="last"{/if}>
	<a 
	href="{$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">
		{$node.name|escape:'html':'UTF-8'}
	</a>
	{if $node.children|@count > 0}
		<ul>
			{foreach from=$node.children item=child name=categoryTreeBranch}
				{if $smarty.foreach.categoryTreeBranch.last}
					{include file="$branche_tpl_path" node=$child last='true'}
				{else}
					{include file="$branche_tpl_path" node=$child last='false'}
				{/if}
			{/foreach}
		</ul>
	{/if}
</li>

Såhär ser hela koden ut.

Link to comment
Share on other sites

Du har hela min kod här:

<li class="category_{$node.id}{if isset($last) && $last == 'true'} last{/if}">
	<a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if}
		title="{$node.desc|strip_tags|trim|truncate:255:'...'}">{$node.name|escape:'html':'UTF-8'}</a>
	{if $node.children|@count > 0}
		<ul>
		{foreach from=$node.children item=child name=categoryTreeBranch}
			{if $smarty.foreach.categoryTreeBranch.last}
				{include file="$branche_tpl_path" node=$child last='true'}
			{else}
				{include file="$branche_tpl_path" node=$child last='false'}
			{/if}
		{/foreach}
		</ul>
	{/if}
</li>

Är inte helt insatt i det här med trim, strip_tags osv, men antar att det är där någonstans skon klämmer.

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...