PDA

View Full Version : Charset problem


gorozox
10-18-2006, 09:51 AM
Hi,

Charset problem for my region. User interface for "Title", "Link added (date)", "Description", "Link Details"

What and where php code to change?

(eSyndiCat Pro v1.2)

Michael Hill
10-18-2006, 09:58 AM
Hi, gorozox!

You can find it in language->english.php file, where you can just change necessary string for your variant.

If it is difficult for you, please, send ticket to our support team whith your ftp - cridentials and describe your problem. We are glad to help you.

gorozox
10-18-2006, 11:51 AM
You have not understood my problem.
The static content is correctly displayed. Wrong character is that which writes user. (Mysql)

Michael Hill
10-18-2006, 12:09 PM
Hi, gorozox,

would you send to us via ticket system your ftp-cridentials, and describe your trouble in details?

Thank you!

Michael Hill
10-20-2006, 09:16 AM
Hi, gorozox!
See, please this thread http://www.esyndicat.com/forum/about6491.html

In your case find in link-display.tpl code

<div class="title">{if $link.crossed}@{/if} <a href="{$link.url}" class="title" id="l{$link.id}" {if $config.new_window}target="_blank"{/if}>{if $config.esc_codes}{text_to_html aText=$link.title aParagraph=true}{else}{$link.title}{/if}</a>
{section name=star loop=$link.rank}<img src="{$img}star.png" alt="" />{/section}
</div>

<div class="description">
{if $config.esc_codes}
{text_to_html aText=$link.description aParagraph=true}
{else}
{$link.description}
{/if}
</div>


And replce it with follows


<div class="title">{if $link.crossed}@{/if} <a href="{$link.url}" class="title" id="l{$link.id}" {if $config.new_window}target="_blank"{/if}>{$link.title}</a>
{section name=star loop=$link.rank}<img src="{$img}star.png" alt="" />{/section}
</div>

<div class="description">{$link.description}</div>



Hope, it will really help you!

Michael Hill
10-20-2006, 09:30 AM
And in adding to previous)))

Is in your Admin panel->configuration->Page Navigation and Listings->Use esc_tags for link textarea fields enabled? Just try do this, probably it helps more simply.

Thanks!

gorozox
10-22-2006, 09:03 PM
It's work!

Thank you.

Michael Hill
10-23-2006, 05:25 AM
Glad to help you! Always at your services!