grincheux
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Hatch Homepage contentHello Reed Smith,
In the ‘Appearance’ menu, you choose Theme Settings
The Author option gives you your answer.
You choose one user of your wordpress blog.After you go the ‘Users’ menu, you edit the chosen user. The text published to the left of the image header is what you write in the ‘Biographical Info’ text field.
Forum: Fixing WordPress
In reply to: Comment box shows when ‘login to comment’ is selectedTo preserve the design of the theme, you need to add “class”.
replace the previous first point by :
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<h4 class="module-title">Connection</h4>
<p class="nocomments">You need to be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged</a> to publish comments.</p>To change the title of this section, you need to replace Connection by your title.
Forum: Fixing WordPress
In reply to: Comment box shows when ‘login to comment’ is selectedI had the same problem. I have found a solution for this problem. You need to update your arrastheme “comments.php” file:
First,
Just after<?php if ('open' == $post->comment_status) : ?>, you need add the following code at the line 34:
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>You need to be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged</a> to publish comments.</p>
Second,
At the end of the file, you add<?php endif ?>.All works for me
Comment: I’m french, and my english is bad. You can change easily the sentence to redirect the users.