Title: Missing tables
Last modified: December 23, 2016

---

# Missing tables

 *  Resolved [sjhchoi](https://wordpress.org/support/users/sjhchoi/)
 * (@sjhchoi)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/missing-tables-4/)
 * I created several tables using “TablePress” plugin.
 * Suddenly, all tables are not shown at our website. Could you help us fix this
   issue?
    Here is our website page that has two tables but doesn’t show tables.
   [http://www.intellichoice.org/volunteers/](http://www.intellichoice.org/volunteers/)
 * Thank you

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-8585232)
 * Hi,
 * thanks for your question, and sorry for the trouble.
 * It seems that this is caused by a conflict with the “Easy Bootstrap Shortcodes
   Pro” that you are also using now. That plugin seems to be offering a `[table]`
   Shortcode as well, which results in a conflict.
    It seems that it’s possible 
   to add a prefix to the Easy Bootstrap Shortcodes Pro version of the Shortcode(
   in the plugin’s settings). Alternatively, you could also change the TablePress
   version of the Shortcode to something else, e.g. `tp_table`, by using the TablePress
   Extension from [https://tablepress.org/extensions/table-shortcode/](https://tablepress.org/extensions/table-shortcode/)
 * Regards,
    Tobias
 *  [clintjreed](https://wordpress.org/support/users/clintjreed/)
 * (@clintjreed)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9252981)
 * Hey we are having the same issue. In the Easy Bootstrap Shortcodes Pro settings,
   we do have a prefix of ebs_ and it is still causing Tablepress to not render 
   tables.
 * [https://www.dropbox.com/s/3cx4enh968b1p6b/Screenshot%202017-06-22%2010.16.50.png?dl=0](https://www.dropbox.com/s/3cx4enh968b1p6b/Screenshot%202017-06-22%2010.16.50.png?dl=0)
 * What are the alternatives?
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9253096)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * What are you getting instead of the table? Can you please post a link to the 
   page with the table where this problem happens, so that I can take a direct look?
   Thanks!
 * And just to be sure that it is related to the `[table]` Shortcode: Does it work
   with the suggested Extension and a changed Shortcode above?
 * Regards,
    Tobias
 *  [clintjreed](https://wordpress.org/support/users/clintjreed/)
 * (@clintjreed)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9253474)
 * This is an internal application that you wouldn’t have access to. I was hoping
   there was a work around to your extension. I am calling the short code from PHP
   directly and I didn’t want to have to change code. If that is the only option,
   I guess I will have to.
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9253537)
 * Hi,
 * if you are calling the Shortcode directly from PHP, you would not even need the
   Shortcode. You could just use the TablePress Template Tag function, see [https://tablepress.org/faq/documentation-template-tag-functions/](https://tablepress.org/faq/documentation-template-tag-functions/)
 * Maybe that’s a possibility? Unfortunately, I can’t really say more about the 
   Shortcode here, without investigating this more, directly on the site.
 * Regards,
    Tobias
 *  [clintjreed](https://wordpress.org/support/users/clintjreed/)
 * (@clintjreed)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9253759)
 * We are actually doing it like this in php.
 * do_shortcode(‘[table class=”scroecardTable” id=topaxcarticles_us /]’);
 * But we are also leveraging the straight up [table] tags within posts and pages,
   non php.
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9253947)
 * Hi,
 * so that PHP code can be replaced with
 *     ```
       <?php
       tablepress_print_table( array(
         'id' => 'topaxcarticles_us'
       ) );
       ```
   
 * The `class` parameter is not used by TablePress.
 * If the Shortcode is not working, there is something else on your site also registering
   that Shortcode. You will have to turn that off or use the TablePress Extension
   mentioned above.
 * Regards,
    Tobias
 *  [clintjreed](https://wordpress.org/support/users/clintjreed/)
 * (@clintjreed)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9262739)
 * Ok, I get that,but we use the class to style the table, how do I still leverage
   a class on a table with PHP?
 * Also, we use the actual shortcode in articles. [table], how can we resolve that?
 * Thanks,
 * Clint
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9262897)
 * Hi Clint,
 * but TablePress doesn’t know such a `class` parameter, that’s why this would not
   make sense. If you want TablePress to add an extra CSS class to the table output,
   you would have to use
    `[table id=123 extra_css_classes="scroecardTable" /]` 
   or in PHP
 *     ```
       <?php
       tablepress_print_table( array(
         'id' => 'topaxcarticles_us',
         'extra_css_classes' => 'scroecardTable',
       ) );
       ```
   
 * For getting the `[table]` Shortcodes to work: You will either have to find out
   what is interpreting the `[table]` Shortcodes now (if it is not TablePress) and
   turn that off or use the TablePress Extension that I mentioned above and change
   the Shortcode.
 * Regards,
    Tobias

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

The topic ‘Missing tables’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 9 replies
 * 3 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/missing-tables-4/#post-9262897)
 * Status: resolved