You can use the ticket system -> just create a private ticket and the only one who is going to see your ticket is me.
Actually I think I know why you can't see the comment form:
go to administrator/component/com_comment/plugin/com_adsmanager/josc_com_adsmanager.class.php
and change the check visible function:
/*
* Condition to active or not the display of the post and input form
* If the return is false, show readon will be executed.
*/
public function checkVisual($contentId=0) {
$option = JRequest::getCMD('option');
$view = JRequest::getVar('view');
$id = JRequest::getInt('id');
return ($option == 'com_adsmanager' && $view == 'details' && $id);
}
and the link to content to this one:
/*
* construct the link to the content item
* (and also direct to the comment if commentId set)
*/
public function linkToContent($contentId, $commentId='') {
$application =& JFactory::getApplication();
if ($commentId) {
$commentId = '#josc' . $commentId;
}
$catId = $this->getCatId($contentId);
$itemId = '&Itemid='.JOSC_utils::getItemid('com_adsmanager');
if(!$application->isAdmin()) {
$url = 'index.php?option=com_adsmanager&view=details&id=' . $contentId . '&catid=' . $catId . $itemId;
} else {
$url = JURI::root() . 'index.php?option=com_adsmanager&view=details&id=' . '&catid=' . $catId . $contentId . $itemId;
}
if(JRequest::getVar('josctask') == 'rss') {
$url = JURI::root() . $url;
}
$url = JRoute::_($url) . $commentId;
/* for notification email links and not root directory - ! */
if (substr(ltrim($url), 0, 7) != 'http://') {
$uri = & JURI::getInstance();
$base = $uri->toString(array('scheme', 'host', 'port'));
$url = $base . $url;
}
return $url;
}
Let me know if it is working after that. Don't hesitate to create that ticket if it is not working!
Daniel