atomiclauren
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Arcade Basic] Problem with header image blank\whiteI’m having the same issue (and a couple others now). Time to look into changing my theme, too…
Forum: Themes and Templates
In reply to: WordPress sidebar in single posts^Yes, I initially did that and saw the “end tag for “div” omitted, but OMITTAG NO was specified.”
Problem is, I can’t find any self closed or unclosed div.
If it is a PHP problem like shown above, I have been unsuccessful in fixing that as well.
Forum: Themes and Templates
In reply to: WordPress sidebar in single posts^Thanks – I checked with the theme creator’s page, and their page with the theme has a sidebar and footer on single posts.
I also checked the single.php file and the sidebar and footer php statements are there. Here is the code for single.php:
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post single” id=”post-<?php the_ID(); ?>”>
<div class=”post-header”>
<div class=”date”> <?php the_time(‘M j’) ?> <span><?php the_time(‘y’) ?></span></div>
<h1><?php the_title(); ?></h1>
<div class=”author”>by <?php the_author() ?></div>
</div><!–end post header–>
<div class=”entry clear”>
<?php the_content(‘read more…’); ?>
<?php edit_post_link(‘Edit This’,'<p>’,'</p>’); ?>
<?php wp_link_pages(); ?>
</div><!–end entry–>
<div class=”meta clear”>
<p>From <?php the_category(‘, ‘) ?> </p>
<div class=”tags”><?php the_tags(‘<span>Tags</span> <p>’, ‘, ‘, ‘</p>’); ?></div></div><!–end meta–>
</div><!–end post–>
<?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
<?php comments_template(”, true); ?>
<?php else : ?>
<?php endif; ?>
</div><!–end content–>
<?php get_sidebar(); ?>
<?php get_footer(); ?>Forum: Themes and Templates
In reply to: WordPress sidebar in single postsI was thinking that, but on the dummy page I used plain text and not a lot of it. The default theme did the same thing in that situation.
If it is a div issue, which seems plausible, I can’t find where to correct it, especially since I have done nothing to the code to begin with.
Forum: Plugins
In reply to: Titan theme with Lightbox pluginTried a few more things, and nothing! Bah!
Forum: Fixing WordPress
In reply to: Global comment removal issueAfter taking one more round at deleting comment-related code in page and post files, it finally worked. I would not recommend this though, because if I decide to enable comments in the future, I have no idea how…
Forum: Fixing WordPress
In reply to: Global comment removal issueTried deleting comment-related files, and nothing!
Lost cause?
Forum: Fixing WordPress
In reply to: Global comment removal issueEdit – i noticed that the first post has comments enabled when clicked on, and others do not…