
Originally Posted by
weezee
I just looked at one I know I added yesterday or the day before and its showing the sameway but it not any line breaks in there. category Jewelry, Bracelets | Charm Bracelet | Handmade Beaded Jewelry, the last link.
This may help if you enter the links from the admin panel.
open admin/links.php
replace the section (lines 368 - 389) with the following:
PHP Code:
<?php
if ($error == true) {
echo $lInfo->links_category . zen_draw_hidden_field('links_category');
} else {
echo zen_draw_pull_down_menu('links_category', $categories_array, $lInfo->links_category, '', true);
}
?></td>
</tr>
<tr>
<td class="main"><?php echo ENTRY_LINKS_DESCRIPTION; ?></td>
<td class="main">
<?php
if ($error == true) {
if ($entry_links_description_error == true) {
echo zen_draw_textarea_field('links_description', 'soft', 40, 5, $lInfo->links_description) . ' ' . ENTRY_LINKS_DESCRIPTION_ERROR;
} else {
echo $lInfo->links_description . zen_draw_hidden_field('links_description');
}
} else {
echo zen_draw_textarea_field('links_description', 'soft', 40, 5, $lInfo->links_description) . TEXT_FIELD_REQUIRED;
}
?></td>
As for those already in the database, you'll need to check the links description table and edit the individual link descriptions.
Bookmarks