Posts: 18
Threads: 3
Joined: Nov 2012
I want to add a text label with like button as u did with reply and flag button. How can i do that? + I dont want flag,like and reply button images in the comment box. How can i remove them?
Thanks a lot for ur support.
Posts: 2,895
Threads: 59
Joined: Jun 2010
Hi,
Open /comments/includes/functions/comments.php
Flag
To remove the image button for the Flag link, replace the following (line 330):
PHP Code:
<?php
$cmtx_box .= "<a class='cmtx_flag' href='' id='flag_" . $id . "' name='flag' title='" . CMTX_TITLE_FLAG . "' rel='nofollow'><img src='" . $cmtx_settings->url_to_comments_folder . "images/buttons/flag.png' alt='Flag' title='" . CMTX_TITLE_FLAG . "'/>" . CMTX_FLAG . "</a>";
With this:
PHP Code:
<?php
$cmtx_box .= "<a class='cmtx_flag' href='' id='flag_" . $id . "' name='flag' title='" . CMTX_TITLE_FLAG . "' rel='nofollow'>" . CMTX_FLAG . "</a>";
Reply
To remove the image button for the Reply link, replace the following (line 317):
PHP Code:
<?php
$cmtx_box .= "<img src='" . $cmtx_settings->url_to_comments_folder . "images/buttons/reply.png' alt='Reply' title='" . CMTX_TITLE_REPLY . "'/>" . CMTX_REPLY . "</a>";