Where do you edit the comment.php for the Simple Twitter Connect in the inove theme.
Inove comment.php only has a simple function in there not relating to the instructions at plugin page.
Where do you edit the comment.php for the Simple Twitter Connect in the inove theme.
Inove comment.php only has a simple function in there not relating to the instructions at plugin page.
Anyone wanting to get this to work in inove will need to change the blog>>wp-content>>themes>>comments.php file on your server to code from below to the following. Least this what got it working for me!
This is how the default inove theme code in comments.php will look!
Note:Leave and delete out this next line -->
<div id="author_info">` and add the two lines as in the lower (second) block of code in this post!
`
<div id="author_info">
<div class="row">
<input type="text" name="author" id="author" class="textfield" value="<?php echo $comment_author; ?>" size="24" tabindex="1" />
<label for="author" class="small"><?php _e('Name', 'inove'); ?> <?php if ($req) _e('(required)', 'inove'); ?></label>
</div>
<div class="row">
<input type="text" name="email" id="email" class="textfield" value="<?php echo $comment_author_email; ?>" size="24" tabindex="2" />
<label for="email" class="small"><?php _e('E-Mail (will not be published)', 'inove');?> <?php if ($req) _e('(required)', 'inove'); ?></label>
</div>
<div class="row">
<input type="text" name="url" id="url" class="textfield" value="<?php echo $comment_author_url; ?>" size="24" tabindex="3" />
<label for="url" class="small"><?php _e('Website', 'inove'); ?></label>
</div>
</div>
`
Note: That the you insert `<div id="comment-user-details">
<?php do_action('alt_comment_login'); ?>
Leave and delete out this next line -->
<div id="author_info">`
`
<div id="comment-user-details">
<?php do_action('alt_comment_login'); ?></p>
<p> <div class="row">
<input type="text" name="author" id="author" class="textfield" value="<?php echo $comment_author; ?>" size="24" tabindex="1" />
<label for="author" class="small"><?php _e('Name', 'inove'); ?> <?php if ($req) _e('(required)', 'inove'); ?></label>
</div>
<div class="row">
<input type="text" name="email" id="email" class="textfield" value="<?php echo $comment_author_email; ?>" size="24" tabindex="2" />
<label for="email" class="small"><?php _e('E-Mail (will not be published)', 'inove');?> <?php if ($req) _e('(required)', 'inove'); ?></label>
</div>
<div class="row">
<input type="text" name="url" id="url" class="textfield" value="<?php echo $comment_author_url; ?>" size="24" tabindex="3" />
<label for="url" class="small"><?php _e('Website', 'inove'); ?></label>
</div>
</div>`
Please advise of anything better then this! Now to try the Facebook connect...
This topic has been closed to new replies.