|
#1
|
|||
|
|||
|
Total Comments?
Anyone know of a addon/hack/mod to get the total comments for the site (sum of all comments)?
thanks! James |
|
#2
|
|||
|
|||
|
Hey James,
to see the total number of comments on your site you must put this in the index.php of the Pixelpost-file Code:
// Get number of comments in database
$commentnumb = sql_array("select count(*) as count from ".$pixelpost_db_prefix."comments where datetime<='$datetime'");
$pixelpost_commentnumb = $commentnumb['count'];
$tpl = str_replace("<ALL_COMMENTS>",$pixelpost_commentnumb,$tpl);
To see the total number of comments in the adminpanel search this in the index.php of the admin-file Code:
// list of comments
if($_GET['id'] == "") {
echo "<div id='jcaption'>List of Comments - delete at will</div><div id='content'><ul>";
Code:
// list of comments
if($_GET['id'] == "") {
$commentnumb = sql_array("select count(*) as count from ".$pixelpost_db_prefix."comments");
$pixelpost_commentnumb = $commentnumb['count'];
echo "<div id='jcaption'>List of Comments - delete at will || <strong><span id='photonumb'>$pixelpost_commentnumb</span> comments at all in the database</strong></div><div id='content'><ul>";
__________________
Janny |
|
#3
|
||||
|
||||
|
to see the number of all comments in the admin panel you can use the stats.php addon. the old stat addon report some of these usefull info. It will fail to report correct info about visitors since v1.4.2 and it needs an upgrade but till then you can relay on its other info like Number of comments and number of comments per photo and things like that.
@ Janny and James to have the number of all comments in the photoblog you can use the same addon and modify it. you can use this modification too. but PLEASE do this as an addon. no need to modify the index.php. you can do it inside an addon very simply. just put these line inside an addon. and save it as my_addon.php and upload it to the addons folder of your photoblog. then use the tag.
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7 |
|
#4
|
|||
|
|||
|
Thanks for the reply everyone! Excellent!
|
|
#5
|
|||
|
|||
|
Quote:
Quote:
__________________
Janny |
| Post Reply |
| Thread Tools | |
|
|