Furyleo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postHi,
Excerpts now is working but only for IE. In Firefox, the mouseover […] doesn’t seems to work.
Any idea?
Thanks.
Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postThanks all,
I think I’ve got it.
Problem is with my permalink settings … %category% .. such that all posts in the same category having the same parmalink.Thanks!
Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postSeems from some changes, one of my footer is messed up with the full post now.
Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postYes, Single.php looks like this …
[for posting code, please read and apply the forum guidelines – http://codex.wordpress.org/Forum_Welcome#Posting_Code – i.e. mark any posted code, or even better use the pastebin]
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <?php get_header(); ?> <div class="page-heading-container"> <div class="container_24"> <div class="grid_24"> <div class="page-heading"> </div> </div> <div class="clear"></div> </div> </div> <!--Start Page Content --> <div class="page-content-container"> <div class="container_24"> <div class="grid_24"> <div class="page-content"> <div class="grid_sub_16 sub_alpha"> <div class="content-bar"> <!-- Start the Loop. --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!--post start--> <div class="post single"> <h1 class="post_title"><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> <div class="post_date"> <ul class="date"> <li class="day"><?php echo get_the_time('M') ?> <li class="month"><?php echo get_the_time('d') ?> </div> <ul class="post_meta"> <li class="posted_by"><span>Posted by</span> <?php the_author_posts_link(); ?> <li class="post_category"><span>Posted in</span> <?php the_category(', '); ?> <li class="post_comment"><?php comments_popup_link('0', '1', '%'); ?> <div class="post_content"> <?php the_content(); ?> <div class="clear"></div> <?php if (has_tag()) { ?> <div class="tag"> <?php the_tags('Post Tagged with ', ', ', ''); ?> </div> <?php } ?> </div> </div> <!--End Post--> <?php endwhile; else: ?> <div class="post"> <p> <?php _e('Sorry, no posts matched your criteria.', 'golden_eagle'); ?> </p> </div> <?php endif; ?> <!--End Loop--> <nav id="nav-single"> <span class="nav-previous"> <?php previous_post_link('%link', __('<span class="meta-nav">←</span> Previous Post ', 'bizway')); ?> </span> <span class="nav-next"> <?php next_post_link('%link', __('Next Post <span class="meta-nav">→</span>', 'bizway')); ?> </span> </nav> <!--Start Comment box--> <?php comments_template(); ?> <!--End Comment box--> </div> </div> <div class="grid_sub_8 sub_omega"> <!--Start Sidebar--> <?php get_sidebar(); ?> <!--End Sidebar--> </div> </div> </div> <div class="clear"></div> </div> </div> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postHi,
Thanks for the response and I already had such text in place.
I am able to click on […] but it is not expanding to the full post.
It still show the same list of excerpts.
Any further help?