All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.


Author Topic: Correct position to put the code  (Read 1595 times)

0 Members and 1 Guest are viewing this topic.

Offline miguelnetto

  • Newbie
  • *
  • Posts: 3
    • View Profile
Correct position to put the code
« on: 04 June 2009, 01:00 »
I m trying about 3 days enable the plugin in posts...I dont know nothing about php, loop, etc
So, this is my comment.php. Please where I put the code?


<?php

// Do not delete these lines
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
   die ('Please do not load this page directly. Thanks!');
if ( post_password_required() ) { ?>
   <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.','arthemia');?></p>
   <?php return;
}

// add a microid to all the comments
function comment_add_microid($classes) {
   $c_email=get_comment_author_email();
   $c_url=get_comment_author_url();
   if (!empty($c_email) && !empty($c_url)) {
      $microid = 'microid-mailto+http:sha1:' . sha1(sha1('mailto:'.$c_email).sha1($c_url));
      $classes[] = $microid;
   }
   return $classes;   
}
add_filter('comment_class','comment_add_microid');

?>

<!-- You can start editing here. -->

<?php if (have_comments()) : ?>

<h3><?php comments_number(__('No Comment','arthemia'), __('One Comment','arthemia'), __('% Comments','arthemia') );?> &raquo; </h3>

<ul class="commentlist" id="singlecomments">
   <?php wp_list_comments(array('avatar_size'=>45, 'reply_text'=>__('Reply to this comment &raquo;','arthemia'))); ?>
</ul>

<div class="navigation">
<div class="alignleft"><?php previous_comments_link(); ?></div>
<div class="alignright"><?php next_comments_link(); ?></div>
</div>


 <?php else : // this is displayed if there are no comments so far ?>

   <?php if ('open' == $post->comment_status) : ?>
      <!-- If comments are open, but there are no comments. -->

    <?php else : // comments are closed ?>
      <p class="nocomments"><?php _e('Comments are closed.','arthemia');?></p>
   
   <?php endif; ?>
<?php endif; ?>


<?php if ('open' == $post->comment_status) : ?>

    <div id="respond">
    <h3><?php comment_form_title(__('Leave a comment!','arthemia'), __('Leave a comment to %s','arthemia')); ?></h3>
     
    <div id="cancel-comment-reply">
   <p><?php cancel_comment_reply_link(__('Click here to cancel reply &raquo;','arthemia')); ?></p>
    </div>

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p><?php _e('You must be','arthemia'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>"><?php _e('logged in','arthemia'); ?></a> <?php _e('to post a comment.','arthemia'); ?></p>
<?php else : ?>



<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p><?php _e('Logged in as','arthemia'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account','arthemia'); ?>"><?php _e('Logout','arthemia'); ?> &raquo;</a></p>

<?php else : ?>



<p><?php _e('Add your comment below, or','arthemia'); ?> <a href="<?php trackback_url(true); ?>" rel="trackback"><?php _e('trackback','arthemia'); ?></a> <?php _e('from your own site','arthemia'); ?>. <?php _e('You can also','arthemia'); ?> <?php comments_rss_link(__('subscribe to these comments','arthemia')); ?> <?php _e('via RSS.','arthemia');?></p>

<p><?php _e('Be nice. Keep it clean. Stay on topic. No spam.','arthemia'); ?></p>

<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" class="field" />
<label for="author"><small><?php _e('Name','arthemia'); ?> <?php if ($req) echo __('(required)','arthemia'); ?></small></label></p>

<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" class="field" />
<label for="email"><small><?php _e('Mail','arthemia'); ?> <?php _e('(will not be published)','arthemia'); ?> <?php if ($req) echo __('(required)','arthemia'); ?></small></label></p>

<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" class="field" />
<label for="url"><small><?php _e('Website','arthemia'); ?> <?php _e('(optional)','arthemia'); ?></small></label></p>

<?php endif; ?>

<div>
<?php comment_id_fields(); ?>
<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" /></div>

<p><textarea name="comment" id="comment" cols="100%" rows="15" tabindex="4" class="field"></textarea></p>
<p><?php _e('You can use these tags:','arthemia'); ?><br/><code><?php echo allowed_tags(); ?></code></p>
<p><?php _e('This is a Gravatar-enabled weblog. To get your own globally-recognized-avatar, please register at','arthemia'); ?> <a href="http://fotodigitalbrasil.com/destaque/dica-crie-e-utilize-seu-gravatar/" target="_blank">Tutorial clicando aqui.</a>.</p>

<p><input name="submit" class="submitbutton" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment','arthemia'); ?>" />
<?php do_action('comment_form', $post->ID); ?>

<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>

</form>


<?php endif; // If registration required and not logged in ?>

</div>

<?php endif; ?>


« Last Edit: 04 June 2009, 09:24 by miguelnetto »

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: Correct position to put the code
« Reply #1 on: 04 June 2009, 01:15 »
Put in before:
Code: [Select]
<div class="navigation">
<div class="alignleft"><?php previous_comments_link(); ?></div>
<div class="alignright"><?php next_comments_link(); ?></div>
</div>

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline miguelnetto

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Correct position to put the code
« Reply #2 on: 04 June 2009, 02:49 »
Thank you for the fast reply Lester! All is ok now!!!!
To help others with this thread, this comment.php is from Arthemia Premium template.