We're Moving to a New Support Platform – Starting June 1st!

We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.

You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.

While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.

We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.

Thanks for your continued support and trust – we’re excited to bring you an even better support experience!

Okay
  Public Ticket #2854278
Addon Question
Closed

Comments

  • David started the conversation

    Can I use the Master Detail Addon with Gravity forms addon? In other words, with a gravity form(s)?

  • [deleted] replied

    Hi David

    Thank you for reaching out to us.

    You can use Master Detail addon on tables created from Gravity Forms.

    You can use placeholders to pass the information to the form, as described here 

    1296438754.png
    6778098114.png

    but there is one thing to have in mind; all themes and plugins rendered on the front-end are executed in a specific amount of time. We're using the_content filter - WordPress' built-in filter for fetching the content from the page, and then we replace the placeholders. Every theme and the plugin that use this hook can set the priority to a different value, and that makes it impossible to work correctly with every single one.In Master-Detail add-on, in file wp-content/plugins/wdt-master-detail/wdt-master-detail.php on line 122 you will find the hook that we use:add_filter( 'the_content', array('wdtMasterDetail\Plugin', 'filterTheContent'), has_filter('tcb_remove_deprecated_strings') ? 999 : 10);Change "10" to some bigger value (99 for example), and see if it works with it. If it doesn't, increase it further.Reference: $priority (int) (Optional) Used to specify the order in which the functions associated with a particular filter are executed. Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the filter.Default value: 10