Hi,
this means that your theme does not parse Shortcodes.
Likely, in the main loop, it does not use the function the_content();, but e.g. something like $post->post_content. Due to that, you don’t see the table but the Shortcode.
Could you somehow check that?
What theme are you using?
Best wishes,
Tobias
I’m using the theme Intrepidity. page.php code is pasted below
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="page">
<h2 class="catheader"><?php the_title(); ?></h2> <?php edit_post_link(' Edit', '<span class="editpost">', '</span>'); ?>
<div class="page-content">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php comments_template(); ?>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
And here is the post.php code
<?php
global $more;
$template_url = get_bloginfo('template_url');
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry_header">
<p class="entry-date"><?php the_time('M y') ?><br /><span class="date"><?php the_time('j')?></span></p>
<?php echo (is_home()) ? '<h2 class="home">' : '<h1>'?><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> <?php edit_post_link('Edit', '<span class="editpost">', '</span>'); ?><?php echo (is_home()) ? '</h2>' : '</h1>'?>
<?php if (FALSE && $post->comment_status != 'closed'):?>
<div class="comment-bubble"><span><?php comments_popup_link('<span class="nocomment">No Comment</span>', ' 1 Comment', '% Comments'); ?></span></div>
<?php endif;?>
<div class="recover"></div>
</div>
<div class="entry_content">
<?php $more = 0;
the_content('<br /><br /><span class="readmore-icon">Read the rest of '. get_the_title('', '', false). '</span>', FALSE);
wp_link_pages();
?>
<div class="postedinfo"><?php the_tags('<span class="tag-meta">Tags: ', ', ', '</span><br />'); ?> <?php _e('Posted in')?> <span class="categories"><?php the_category(' ') ?></span> <?php _e('by')?> <span class="usr-meta"><?php the_author() ?></span>.
<span class="comment-icon"><?php comments_popup_link('No Comments', '1 Comment', '% Comments')?></span>
<?php if (isset($options['tags'])) : ?><span class="tags"><?php the_tags('', ', ', ''); ?></span><?php endif; ?></div>
</div>
</div>
Hi,
thanks for the code.
Everything seems to be correct there…
Can you post a link to the page with the (not-working) table?
Regards,
Tobias
Same here. My code is basically identical.
http://toddbates.org/2010-pre-game-picks/
There is my link.
Hi,
can you guys check if it works with the WordPress Default theme (TwentyTen)?
If yes, I suggest contacting your theme’s authors, as the theme does not seem to parse any Shortcodes correctly.
Another point of failure might simply be: Is WP-Table Reloaded activated?
Best wishes,
Tobias
LOL, nice! I tried that and it worked. Just activated my theme back and VOILA, it was working now. Weird! But, anyways, thanks! 😉