Can you provide a basic example of how to override standard Q2A forms in an advanced theme? Or is there a file to look at that explains this? Do you simply copy the $qa_content form array into qa-theme.php and modify it or do you need to use different variables?
In certain qa-page files the qa_content is created over several different functions. How does one "intercept" the particular part of the form or the specific form that needs to be modified, since presumably you cannot copy the function(s) from the qa-page file into qa-theme.php?
Here is an example, and I'm wondering why this doesn't work?
In my qa-theme.php I can access the following form array from the qa-user page:
$this->content['['form_profile']']['level']['type']
Why then can't I simply reset this array value of type by doing something like this:
$this->content['['form_profile']']['level']['type'] = 'blank'
When I try this I get an undefined error.
Thanks.