comments.php file for your theme and look for the text <?php do_action('comment_form', $post->ID); ?>.<textarea name="comment" id="comment"></textarea> and add <?php do_action('comment_form', $post->ID); ?> either above or below the textarea. Wherever you add this line, the CTI scrollbox will appear.tse_cti_anywhere( 'target', OUTPUT ) where 'target' is the ID of the textarea you are using and OUTPUT is boolean TRUE or FALSE.<?php tse_cti_anywhere(); ?> to manually add the CTI smileys to your comment form. This will automatically print the clickable smileys to the comment form in whichever location you use. If you add this before the textarea, you get smileys before the textarea. If you add this after the textarea, you get smileys after the textarea. If you use this manual function, please uncheck Enable CTI for comments on the TSE Options page.<?php tse_cti_anywhere( 'bananas' ); ?> to print clickable smileys for use on the textarea defined as <textarea id="bananas"></textarea>.$variable = tse_cti_anywhere( 'oranges', false ); to use $variable elsewhere in PHP. $variable reverences <textarea id="oranges"></textarea> and can be used as <?php echo $variable; ?> on the form containing the textarea.tse_cti_anywhere( 'grapes', true ) you can reference the box as #tseCTIsmileys-grapes and for tse_cti_anywhere( 'apples', true ) you can reference the box as #tseCTIsmileys-apples.



