Here is the deal: I don't get my comments to show on my page. Here are all the codes:
In guest.php on my webpage:
- Code: Select all
<?PHP
include 'admin/head.php';
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>guestbook @ eldar.se</title>
<link href="style2.css" rel="stylesheet" type="text/css">
</head>
<body style="background-color:transparent; overflow-x:hidden;overflow-y:auto">
<?PHP
$category = "7";
$template = "guestbook";
include $cutepath.'/show_news.php';
?>
</body>
</html>
In the plugin-page in cutenews.ru "Disable All Comments" are DEACTIVATED and "Enable/Disable Comments" are ACTIVATED. I also have checked the little box that belongs to the text "Allow comments?" in the news that I use as guestbook.
Code in the template "guestbook":
Active News:
- Code: Select all
Blank
Comments:
- Code: Select all
<div style="width: 415px; margin-bottom:8px;">
<div><strong>{author}</strong></div>
<div style="padding:2px; text-align:justify; margin-top:3px; background-color:#bd773e; border-top:1px solid #000000; border-bottom:1px solid #000000; border-right:1px solid #000000; border-left:1px solid #000000;">{comment}</div>
<div style="padding:2px; text-align:right; border-bottom:1px solid #000000; border-right:1px solid #000000; border-left:1px solid #000000;"><em>Comment number {comnum} was posted on {date}</em></div>
</div>
Comment form:
- Code: Select all
<table border="0" width="370" cellspacing="0" cellpadding="0">
<tr>
<td style="padding:2px;">Name:<br>
<input type="text" name="name"></td>
</tr>
<tr>
<td style="padding:2px;">Mail:<br>
<input type="text" name="mail">
(optional)</td>
</tr>
<tr>
<td style="padding:2px;">Comment:<br>
<textarea cols="40" rows="6" id=commentsbox name="comments"></textarea><br /><br />
<input type="submit" name="submit" value="Sign Our Guestbook"> </td>
</tr>
</table>
Here is a link to my webpage: http://www.eldar.se Look at guestbook in menu.
Hope that someone can help me. I don't know what more information I need to provide.

