Title: Displaying data using a Genesis Framework Theme
Last modified: September 1, 2016

---

# Displaying data using a Genesis Framework Theme

 *  Resolved [antp](https://wordpress.org/support/users/antp/)
 * (@antp)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/displaying-data-using-a-genesis-framework-theme/)
 * Hi
 * Firstly, thank you for developing what looks to be a very useful plugin.
 * I have created a new custom table using the plugin, and some custom shortcodes
   to view and edit data in the new table.
 * When using the WordPress Theme **Twenty Sixteen** or other free themes from wordpress.
   org, the shortcodes work correctly, and i can view the data in the custom table.
   However, my website uses a **Genesis Framework** theme, and the shortcodes no
   lonnger work.
 * The **view** shortcode does not display any data, i can see a spinning wheel 
   as it is attempting to display the data but nothing ever appears.
 * The **edit** and **entry** shortcodes appear as normal, but the **register** 
   button does nothing when clicked.
 * Can you help me to fix this please?
 * Thanks
    Anthony
 * [https://wordpress.org/plugins/custom-database-tables/](https://wordpress.org/plugins/custom-database-tables/)

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

 *  Plugin Author [ka2](https://wordpress.org/support/users/ka2/)
 * (@ka2)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/displaying-data-using-a-genesis-framework-theme/#post-7556358)
 * Thank you for your inquiry.
 * In the troubled page, aren’t you inserting the shortcode in directly template
   or widget like without the post content?
    In Custom DataBase Tables plugin, it
   will be loading the required resources when that found shortcodes in the post
   content. Therefor, it cannot loading the resources if the shortcodes is placing
   outer of the post content.
 * In that case, you should initialize manually to render shortcode. As in the “
   functions.php” of your theme, you should insert code below.
 *     ```
       if ( ! is_admin() ) {
         global $cdbt;
         add_action( 'init', array( $cdbt, 'cdbt_pre_shortcode_render' ), 10, 2 );
       }
       ```
   
 * Maybe I think that will be resolved the view’s matter if you do above.
 * On the other hand, I probably think the matter of entry and edit is another cause.
   That maybe is by conflicting the jQuery.
 * Please try to change plugin options as below if that’s conflicting the jQuery
   file.
 * 1. Go to the “General Settings” tab on the “CDBT Plugin Options” screen.
    2. 
   Uncheck the checkbox of “jQuery” in the “Front-end Screen” column at the “Loading
   Resources” item of the “Advanced Plugin Settings”. 3. Click the “Save Changes”
   button.
 * Please try it.
    Thank you,
 *  Thread Starter [antp](https://wordpress.org/support/users/antp/)
 * (@antp)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/displaying-data-using-a-genesis-framework-theme/#post-7556375)
 * Thank you for the quick response
 * Your instructions to turn off the jQuery option of the plugin has fixed the issue.
 * **_1. Go to the “General Settings” tab on the “CDBT Plugin Options” screen.
    
   2. Uncheck the checkbox of “jQuery” in the “Front-end Screen” column at the “
   Loading Resources” item of the “Advanced Plugin Settings”. 3. Click the “Save
   Changes” button.
 * Thank you very much

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

The topic ‘Displaying data using a Genesis Framework Theme’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/custom-database-tables_e4e2e2.svg)
 * [Custom DataBase Tables](https://wordpress.org/plugins/custom-database-tables/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/custom-database-tables/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/custom-database-tables/)
 * [Active Topics](https://wordpress.org/support/plugin/custom-database-tables/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/custom-database-tables/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/custom-database-tables/reviews/)

## Tags

 * [genesis framework](https://wordpress.org/support/topic-tag/genesis-framework/)
 * [shortcode](https://wordpress.org/support/topic-tag/shortcode/)

 * 2 replies
 * 2 participants
 * Last reply from: [antp](https://wordpress.org/support/users/antp/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/displaying-data-using-a-genesis-framework-theme/#post-7556375)
 * Status: resolved