Any suggestions?
]]>Is not working – no errors presented, but I just discovered when hitting “send” ….nothing is sent!
Any tips would be much appreciated many thanks.
DJ
]]>Hi,
Newbie to wordpress and to php.
I’ve added my site’s theme to the index.php page, and it looks good. However, when a link is selected (leave a comment; view all posts by; etc.) my theme doesn’t appear. How do I get my theme, especially the navigation header, to appear on every page?
I’m working on my wordpress website and I hope you guys can help me. I’m using the Writr theme but I have a few questions, I did some changes on the CSS but I’m facing some issues.
As you can see on my blog agora30.com in any post the text on the comments area is white and can’t be read, I’m not sure how to change it back to black.
Here it is an example: https://agora30.com/blog/2014/11/27/livre-em-porto-uma-viagem-ao-proprio-interior/
Thank you very much.
]]>I was thinking of using WordPress for a project and was suprised at the omission of these following two features.
Firstly, that commenters can’t have a comments tag cloud. Once this feature is in place it could be used with the second feature that I have noted as missing, for custom comments queries.
Secondly, that comment’s can’t be seperated out from the blog post into their own page. There are a number of reasons one might like to do this, such as querying the comments if you happen to be looking for a particular commment/commenter, or in conjunction with a tag cloud you could find comments with particular tags.
From what I have read, this isn’t currently feasible via the plugin route due to the nature of the current blog construction.
]]>1) I want comments. I assume that requires a post and not a page. Is that correct?
2) I want to link to certain (comment only) posts – without having those posts appear in the normal sequence of blog posts.
In other words: Can some posts be prevented from appearing as blog posts? If I set them as pages, that would work – but no comments are allowed on pages (or so I believe).
Thanks
Mark
]]>May I pick your brain? I am working on a WordPress Blog for a client @: https://www.saharaheve.com/blog/
Blog integrates fairly well into the existing site design (that was a chore in of itself). When looking over the individual comment pages, however, I noticed they are all stripped of formatting. Very ugly.
Blog’s index page was modified, and the CSS code was embedded in the page itself after reworking the index page’s look and feel. Any idea as to what I did wrong in that area? Your help would be much appreciated!
Marc
]]>With Comments.
Without Comments.
This is the code for the comments page. If you need any more information, just let me know.
<?php
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">This post is password protected. Enter the password to view comments.</p>
<?php
return;
}
?>
<div class="bob">
<?php if ( have_comments() ) : ?>
<h3><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3>
<div class="bobbox">
<div class="navigation">
<div class="alignleft"><?php previous_comments_link() ?></div>
<div class="alignright"><?php next_comments_link() ?></div>
</div>
<ol class="ugh">
<?php wp_list_comments(); ?>
</ol>
<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 ( comments_open() ) : ?>
<?php else : // comments are closed ?>
<p class="nocomments">Comments are closed.</p>
<?php endif; ?>
<?php endif; ?>
<?php if ( comments_open() ) : ?>
<h3 class="other"><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3><br />
<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div>
<?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
<p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( is_user_logged_in() ) : ?>
<p>Logged in as <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="Log out of this account">Log out »</a></p>
<?php else : ?>
<p><input class="commentform" type="text" name="author" id="author" value="<?php echo ($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author"><small>Name <?php if ($req) echo ""; ?></small></label></p>
<p><input class="commentform" type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email"><small>Email<?php if ($req) echo ""; ?></small></label></p>
<p><input class="commentform" type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>
<?php endif; ?>
<p><textarea class="commentform" name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
<p><center><input class="commentform2" name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /></center>
<?php comment_id_fields(); ?>
</p>
</form>
<?php endif;?>
</div>
<?php endif;?>
</div>
<?php get_footer(); ?>
]]>