zpimpa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Issue with comments linking to single comments page.bump …
Forum: Fixing WordPress
In reply to: Issue with comments linking to single comments page.Does Safari treat anchors differently than Firefox for some reason?
Forum: Fixing WordPress
In reply to: Issue with comments linking to single comments page.Thanks … I just noticed that this is only a firefox problem, that it works fine in Safari.
Forum: Fixing WordPress
In reply to: Issue with comments linking to single comments page.Thanks again. I cannot provide a specific link to the example because of the nature of the project.
Anyways,
index.php: http://wordpress.pastebin.ca/696104
single.php: http://wordpress.pastebin.ca/696109
comments.php: http://wordpress.pastebin.ca/696111
So again, the problem is when clicking the comments URL from the index, only comments.php loads. However, the rest of the single.php code loads in the source (but is not displayed in the browser).
Forum: Fixing WordPress
In reply to: Issue with comments linking to single comments page.Here is my index.php code
<?php comments_popup_link('No Comments »', '[1]', '[%]', 'commentslink'); ?>Here is my single.php code
<div class="commentsblock"> <a href="<?php comments_link(); ?>"><?php comments_template(); ?></a> </div>Here is my comments.php code
<h3 id="comments">Post a Reply</h3>Should the index ‘comments link’ be changed to the code below?
<?php comments_link(); ?>">Forum: Fixing WordPress
In reply to: Issue with comments linking to single comments page.Thank you moshu.
When I view source on the page I see that the actual content of the post appears in the source, along with all sidebar links etc. However, the only thing that is displayed on the page is the comments.php page. Is that all because of the lack of an anchor?