Hi,
https://formidableforms.com/knowledgebase/frm_ai_data/
In the function, add_filter( 'frm_ai_data', 'frm_reduce_ai_temp' );
function frm_reduce_ai_temp( $data ) {
// currently the questions are just all stuck in this string variable. which is then sent to chatGPT.
// where or how can I get access to the individual watch variables?
// surely there is a way?
// $data['question']
}
thanks
Please login or Register to submit your answer
this hook works: add_filter( 'frm_ai_data', 'frm_reduce_ai_temp' );
BUT none of the other hooks are being called?
How or why is that happening?
Am i doing something wrong?