Recent Topics

1 May 28, 2008 08:58    

My b2evolution Version: Not Entered

What is the difference between the following files :
_item_comment_form.inc.php and _item_feedback.inc.php

Are these the same ?

2 May 28, 2008 09:14

_item_comment_form.inc.php
* This is the template that displays the comment form for a post

_item_feedback.inc.php
* This is the template that displays the feedback for a post
* (comments, trackback, pingback...)

No, they are not the same :)

4 May 28, 2008 09:39

You need to look at the first one...
_item_comment_form.inc.php
Most of what you need to play with will come after
"// ---------------------- END OF PREVIEW COMMENT ---------------------"

Remember, back up original files :)

5 May 28, 2008 09:46

Thnx i will try it.

I was confused because i put the _item_feedback.inc.php in my own skin folder and changed it a little. I could see the change on my site so i thought that this was the correct file.

6 May 28, 2008 09:52

That file displays all feedback plus it serves up the comment form...

// ------------------ COMMENT INCLUDED HERE ------------------
skin_include( $params['comment_template'], array(
'Comment' => & $Comment,
'comment_start' => $params['comment_start'],
'comment_end' => $params['comment_end'],
) );
// Note: You can customize the default item feedback by copying the generic
// /skins/_item_comment.inc.php file into the current skin folder.
// ---------------------- END OF COMMENT ---------------------

7 May 28, 2008 10:02

I now know what make me so confused. I took a _item_feedback.in.php from an other skin. That was not the original but an edited one. This one also included a lot of _item_comment_form.inc.php
That's why i thought they were almost the same. Sorry.......


Form is loading...