Below every story title, is displayed the following code:
Under: '.$terms.'' : ''?>
Please see the attached image.
| Comment | File | Size | Author |
|---|---|---|---|
| title.jpg | 36.93 KB | bzunnssukj |
Below every story title, is displayed the following code:
Under: '.$terms.'' : ''?>
Please see the attached image.
| Comment | File | Size | Author |
|---|---|---|---|
| title.jpg | 36.93 KB | bzunnssukj |
Comments
Comment #1
peterx commentedSame at http://d-theme.com/blue_lake.
node.tpl.php:
<?=$terms? '<span class="taxonomy">Under: '.$terms.'</span>' : ''?>should be:
<?php if($terms) { ?><span class="taxonomy">Under: <?php print $terms; ?></span><?php } ?>Comment #2
vv7 commentedthanks for the try to fix, but there's more code missing there; tabs are missing.
see also: http://drupal.org/node/657822
Comment #3
vv7 commentedComment #4
peterx commented#1 still exists in version 1.1. The theme is also missing the view and edit options for content editors.