bigshift
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Fatal error: Call to undefined functionExcellent Thanks.
Forum: Fixing WordPress
In reply to: current page css styleThanks esmi.. that did the trick.
Forum: Fixing WordPress
In reply to: custom sidebar not working properlyThanks Zeo.
Forum: Fixing WordPress
In reply to: custom sidebar not working properlyAny ideas? anyone?
Forum: Fixing WordPress
In reply to: Post Content not showingThanks. Here is the single.php code…
<?php get_header(); ?> </div> <div id="box"> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <div class="post"> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <div id="biline">Posted by: <?php the_author_link(); ?> | <?php the_time('l, F jS, Y') ?></div> <div class="entry"> <?php the_content(); ?> <p class="postmetadata"> <?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?><br /> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?> </p> </div> <div class="comments-template"> <?php comments_template(); ?> </div> </div> <?php endwhile; ?> <div class="navigation"> <?php previous_post_link('<< %link') ?> <?php next_post_link(' %link >>') ?> </div> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?> </body> </html>
It’s virtually the same as index.
I’ve also tested, it won’t post just anything that I input on the HTML tab, it has to be a good size of markup. A simple div with some greek in it won’t show.
Thanks
Forum: Fixing WordPress
In reply to: Post Content not showingupdate…
if I enter info in the HTML tab… it shows in the post, but won’t show if i use the visual tab.
very weird huh?
any help is still appreciated.
Forum: Plugins
In reply to: “Recent Posts” pluginForum: Plugins
In reply to: “Recent Posts” pluginI must be missing something.
I copy and paste the above code in my open div, and all that is displayed is the ‘script’ as if it were in a ‘p’ tag rather than code.
If I place it in a <script> tag, the code doesn’t render, but neither does the result.
Thanks. Appreciate the assistance as I am just starting to get into more advanced stuff with wp and the codex.
Forum: Fixing WordPress
In reply to: Single page ‘nav’ vs. Main page ‘nav’OK.. I resolved that original issue, somewhat.
Now I have the following.<div class="jnavigation"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></div> <ul> <li><?php the_title(""); ?></li> <li><a href="<?php the_permalink() ?>#comments"><?php comments_number('no comments yet','1 comment','% comments')?></a></li> <li><?php posts_nav_link(' • ','«« newer posts','older posts »»'); ?></li> </ul> </div>
Now… can I make next/previous show when they are ‘inactive’ so my navigation isn’t bumping all over the place?
Thanks
Forum: Themes and Templates
In reply to: Comment box too far to the leftMelinda,
From what I can tell, your id=”commentform” has no style assigned to it.
I think a simple:
#commentform {
margin-left:20px;
}In your css should do the trick.
Thanks.
Forum: Fixing WordPress
In reply to: Make posts only show in/on category page?Thanks. I think this gets me there… slowly learning…
Forum: Installing WordPress
In reply to: 2.7 update, truncated postsHas anyone else had/resolved this issue? I am having truncated post issues as well, and I have uninstalled, and reinstalled wp 4 times now.
Any thoughts would be appreciated.
Thanks