Skip to content

Daily Archives: Φεβρουαρίου 4th, 2008

Do we need new (information browsing) interfaces?

04-Φεβ-08

Ordering information in a website is a nightmare, no matter how many domains you have, no matter what CMS you use. Technologies are so complex that a tree structure is hardly sufficient as principle for ordering and navigation. Perhaps dynamically generated pages that change according to the perspective of the user (project oriented, hardware […]

disabling excerpts (clipping) in plaintxtBlog theme

04-Φεβ-08

Kind reply from Scott, author of plaintxtBlog.
edit the follow theme files: archive.php, category.php, tag.php.
Change the lines with the_excerpt()
<?php the_excerpt('<span class="more-link">'.__('More&hellip;', 'plaintxtblog').'</span>') ?>
to the_content(), like so:
<?php the_content('<span class="more-link">'.__('More&hellip;', 'plaintxtblog').'</span>') ?>
(I am putting this here because I have not yet created a category in the wikis for web dev stuff)