Kevin Kwok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Older and Newer posts links not workingThanks for the kind words mduzair
Forum: Fixing WordPress
In reply to: Older and Newer posts links not workingI tried downloading page-navi plugin and still cannot get my idea to work properly =(
Forum: Fixing WordPress
In reply to: Older and Newer posts links not workingDoes anyone know how I can get this to work? My site contains MANY categories that are basically treated as posts, because I am using wordpress this way the “older” and “newer” post links at the bottom do not work.
I am looking for a way to alter the code so that when a user clicks older posts it basically displays an older set of categories. is this at all possible?
Forum: Fixing WordPress
In reply to: Older and Newer posts links not workingbeen messing with it for a couple of hours but i cant seem to get this to work
Forum: Fixing WordPress
In reply to: Older and Newer posts links not workinghmmm sorry not sure what rule i violated, will look into it
but heres a link to my code i think that should be ok with the rules
https://wordpress.pastebin.ca/1788501Forum: Fixing WordPress
In reply to: Display same blog posts on two different sitesi am still super lost. =\
Basically trying to get the posts from website #1 via RSS
and use that RSS to post on website #2anyone? =)
Forum: Fixing WordPress
In reply to: Post Author not showing up…you are most welcome dont forget to mark this as “resolved” so it can help someone in the future. have a good one.
still cannot find a fix for this =(
Forum: Fixing WordPress
In reply to: Post Author not showing up…ok i think i got it.
looking at the original code you had here:<div class="PostTime"><span class="PostDay"><?php the_time('j') ?></span> <span class="PostEra"><?php the_time('M Y') ?></span></div> <h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <small class="PostDet"><?php edit_post_link('Edit', '', ' | '); ?> Author: <?php the_author(); ?> | Filed under: <?php the_category(', ') ?> </small> </div>
your css class used to show the edit, author, filed under, etc is class=”postdet”
so looking in that CSS you just gave me locate this section of your css
.PostHead small.PostDet{ clear:both; display:block; left:10px; position:absolute; top:-26px; height: 23px; width:395px; overflow: hidden; display: none; }
you see where it says display:none; take that line out. try that i think it should fix your problem sorry took me a while to get back to you was sick. let me know if this works
does anyone happen to know how i can make it show only 32 posts per page
Forum: Fixing WordPress
In reply to: Display same blog posts on two different sitesyes they are both are wp based.
Thanks michael and songdog for the links i will check these out
Forum: Fixing WordPress
In reply to: Post Author not showing up…yea i took out all your div and span tags because i just wanted to see that everything was at least functioning. so michael was right it is something to do with your css ; your span and div tags surrounding the links in your original code.
i would go in and double check everything
Forum: Fixing WordPress
In reply to: Post Author not showing up…just for my curiosity can you use this as your index.php and tell me if it works
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"><div class="PostHead"> <?php the_time('j') ?><BR /> <?php the_time('M Y') ?><BR /> <a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a><BR /> <?php edit_post_link('Edit'); ?> <BR /> Author: <?php the_author(); ?> <BR /> Filed under: <?php the_category(', ') ?><br /> <div class="entry"><?php the_content('Read the rest of this entry »'); ?></div></div> <p class="postmetadata"><span class="tags"><?php the_tags('Tags: ', ', '); ?></span></p> <div class="comments"><?php comments_popup_link('NO COMMENTS', '<span> 1 </span> COMMENTS', '<span> % </span> COMMENTS'); ?></div> <br /><?php endwhile; ?><div class="navigation"><div class="alignleft"> <?php previous_posts_link(); ?></div><div class="alignright"><?php next_posts_link(); ?></div></div> <?php else : ?><h2 class="center">Not Found</h2><p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?><?php endif; ?></div> <?php get_sidebar(); ?><?php include( TEMPLATEPATH . '/right.php' ); ?></div> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Post Author not showing up…hmm well ive tired your code on my own site, and it shows up just fine. so it must be something else on your site conflicting with the code on your site.