Hi there
I have tried to implement your Feedback plugin on my application, I am having an error on my view pages that says "Feedback.CommentsComponent could not be found". Can you please highlight where im getting lost?
Below is my code that i have used in my model,controller and view
Model Code
class ItSupportRequest extends AppModel {
public $actsAs = array('Feedback.Commentable');
/*other code*/
}
Controller code
public $components = array
(
'Feedback.Comments' => array
(
'on' => array
(
'admin_view',
'view'
)
)
);
and the view code
<?php echo $this->Comments->display_for($itSupportRequestComment); ?>
Thanks in advance.