• I have used your plugin in the past on 2.7+ in my personal blog and it’s an awesome time saver!!!!

    I’m using 3.1 now, but I’m not using any special characters except for a percent sign and an apostrophe, and not using any special post plugins (yet) but the actual code [table id=1 /] is showing in the user page. I’ve tried putting it in the HTML and in the Visual… have also tried to use the WYSIWYG buttons on both sides as well… no luck.

    Any suggestions?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    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

    Thread Starter phoenixx

    (@phoenixx)

    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 &raquo;</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(); ?>
    Thread Starter phoenixx

    (@phoenixx)

    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>', '&nbsp;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>
    Plugin Author Tobias Bäthge

    (@tobiasbg)

    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.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    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! 😉

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘[Plugin: WP-Table Reloaded] Code showing instead of data’ is closed to new replies.