Title: wpbenq's Replies | WordPress.org

---

# wpbenq

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Large table backend slowdown](https://wordpress.org/support/topic/large-table-backend-slowdown/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/large-table-backend-slowdown/#post-14413495)
 * I totally understand and on behalf on everyone that uses TablePress, thank you
   for your time and work.
    Will soon be making a donation.
 * Much appreciate it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Large table backend slowdown](https://wordpress.org/support/topic/large-table-backend-slowdown/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/large-table-backend-slowdown/#post-14413446)
 * Thank you for the prompt response Tobias.
 * I understand no worries. Meanwhile I can definitely use the dummy table trick.
 * Any idea when the new “Edit” screen will be released?
 * Again, really appreciate the help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Edit link bottom left, who can see it?](https://wordpress.org/support/topic/edit-link-bottom-left-who-can-see-it/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/edit-link-bottom-left-who-can-see-it/#post-14204386)
 * Thanks for the prompt reply Tobias.
    I dunno how I missed that under the extensions
   section.
 * Much appreciated!
    -  This reply was modified 5 years, 5 months ago by [wpbenq](https://wordpress.org/support/users/wpbenq/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Logged in User row filtering](https://wordpress.org/support/topic/logged-in-user-row-filtering/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/logged-in-user-row-filtering/#post-14203829)
 * I am good, the above worked!
    Thank you very much Tobias.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Logged in User row filtering](https://wordpress.org/support/topic/logged-in-user-row-filtering/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/logged-in-user-row-filtering/#post-14202143)
 * Thank you for replying Tobias.
 * So the final shortcode will look like?
 * `[table-user-filtered id=XXX filter_columns="XXX" /]`
 * For this snippet:
 *     ```
       add_shortcode( 'table-user-filtered', 'tablepress_filtered_table' );
       function tablepress_filtered_table( $atts ) {
       if ( ! is_user_logged_in() ) {
           return 'Error: No user is logged in.';
         }
         $current_user = wp_get_current_user();
         $userid = $current_user->ID;
         $atts['filter'] = $userid;
         $atts['filter_full_cell_match'] = true;
         $atts['cache_table_output'] = false;
         return tablepress_get_table( $atts );
         }
       ```
   
 * `
 * Thanks
    -  This reply was modified 5 years, 5 months ago by [wpbenq](https://wordpress.org/support/users/wpbenq/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Gravity Form entries as source?](https://wordpress.org/support/topic/gravity-form-entries-as-source/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/gravity-form-entries-as-source/#post-13621531)
 * Thank you for your time Tobias.
    My search continues for a solution.
 * Keep up the good work!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Gravity Form entries as source?](https://wordpress.org/support/topic/gravity-form-entries-as-source/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/gravity-form-entries-as-source/#post-13616883)
 * I will lay out my dilemma and would appreciate it if you can give me some input
   on how to or if I can sort it out using TablePress.
 * My site uses Gravity Forms to get orders. Currently I am using GravityView to
   display the data entries on the front-end for customers to keep track. From here
   the orders get more back-end data as its being processed like process status,
   dimensions etc. Currently we use excel to keep track of those data in the back
   end, with the tracking number being the common field.
    The issue arises because
   we process the shipment in batches like in 100’s-1000s in a batch. Makes it extremely
   time consuming to update the data to the front-end. Also, Gravity Forms is not
   very good at handling bulk updates.
 * I am hoping I can somehow use TablePress to display data from Gravity Form entries
   AND excel sheet (or CSV) to show up on the front-end for the customers to see
   the additional back-end data.
 * Really appreciate your time Tobias.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Gravity Form entries as source?](https://wordpress.org/support/topic/gravity-form-entries-as-source/)
 *  Thread Starter [wpbenq](https://wordpress.org/support/users/wpbenq/)
 * (@wpbenq)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/gravity-form-entries-as-source/#post-13616844)
 * Thank you Tobias for the prompt response.
 * I am extremely impressed with your plugin and extensions. Even more impressed
   on how you let people try it fully and trust them to donate if it works. And 
   on top of that swift level of support. Keep up the great work! Will definitely
   donate if I end up using or just may for your efforts.

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