Title: cknova's Replies | WordPress.org

---

# cknova

  [  ](https://wordpress.org/support/users/cknova/)

 *   [Profile](https://wordpress.org/support/users/cknova/)
 *   [Topics Started](https://wordpress.org/support/users/cknova/topics/)
 *   [Replies Created](https://wordpress.org/support/users/cknova/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/cknova/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/cknova/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/cknova/engagements/)
 *   [Favorites](https://wordpress.org/support/users/cknova/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ReCaptcha v2 for Contact Form 7] Plugin seems to be loading recaptcha__en_gb.js multiple times](https://wordpress.org/support/topic/plugin-seems-to-be-loading-recaptcha__en_gb-js-multiple-times/)
 *  Thread Starter [cknova](https://wordpress.org/support/users/cknova/)
 * (@cknova)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/plugin-seems-to-be-loading-recaptcha__en_gb-js-multiple-times/#post-16895789)
 * Thanks for the reply. Looking into it further it seems to be the intended behavior
   of Recaptcha as discussed here [https://github.com/google/recaptcha/issues/335](https://github.com/google/recaptcha/issues/335).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GutenBee - Gutenberg Blocks] More than 15 accordion sections](https://wordpress.org/support/topic/more-than-15-accordion-sections/)
 *  Thread Starter [cknova](https://wordpress.org/support/users/cknova/)
 * (@cknova)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/more-than-15-accordion-sections/#post-15761173)
 * Great! I like GutenBee and will use for another project 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GutenBee - Gutenberg Blocks] More than 15 accordion sections](https://wordpress.org/support/topic/more-than-15-accordion-sections/)
 *  Thread Starter [cknova](https://wordpress.org/support/users/cknova/)
 * (@cknova)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/more-than-15-accordion-sections/#post-15761075)
 * Thanks for the reply.
 * Unfortunately that won’t work for me as I need the other items to close, when
   one is selected, and this doesn’t work across separate accordion blocks.
 * As this is the only extra block I need, I have found another plugin (getwid) 
   with unlimited accordion items.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Tables in hidden tabs rough fix](https://wordpress.org/support/topic/tables-in-hidden-tabs-rough-fix/)
 *  Thread Starter [cknova](https://wordpress.org/support/users/cknova/)
 * (@cknova)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/tables-in-hidden-tabs-rough-fix/#post-11721361)
 * In the end I moved the code to the content-single-product.php page and used the
   product ID to dynamically create the table ID.
 *     ```
       <script type="text/javascript">
       if ( undefined !== window.jQuery ) { // script dependent on jQuery
           jQuery(document).ready(function( $ ) {
                $("#tab-title-technical-information").on("click", function(){ 
                   // table not actually visible at moment this is called, content takes a moment before it is available - so please wait before redrawing table
                   var checkExist = setInterval(function() {
                       if ($('#tablepress-<?php the_ID(); ?>').length) {
                           $('#tablepress-<?php the_ID(); ?>').DataTable().columns.adjust().draw(); // redraw table
                           clearInterval(checkExist);
                       }
                   }, 100); // check every 100ms         
               }); 
           });
       }
       </script>
       ```
   
 * This meant that I didn’t have to hard (or load!) all the possible JS resize blocks
   for each product in the functions.php file 🙂
 * Requirements:
    * TablePress table ID must = Product ID * Tab ID must be known(
   and, in my case, the table appears on same “Technical information” tab for each
   product so I could hardcode the tab name)

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