You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a great plugin and working just fine, but I am having an issue when I have both this plugin and wp job manager plugin active.
The class in question is RT_Transcoder_Handler , there is a method in it named handle_callback which is fired in the init hook.
Now, I'm hoping you are familiar with the wp job manager plugin. Anyway, it has [submit_job_form] and [job_dashboard] shortcodes. These shortcodes renders job sumbit and edit forms.
When I submit these forms, your plugin method handle_callback gets $job_id from the form submission in line number 985 and dies in line number 1116. Also you have an undefined variable $mail in line number 1098.
I tried by myself, but could not fix it. I tried to remove the action conditionally like:
Hi there,
This is a great plugin and working just fine, but I am having an issue when I have both this plugin and wp job manager plugin active.
The class in question is
RT_Transcoder_Handler
, there is a method in it namedhandle_callback
which is fired in theinit
hook.Now, I'm hoping you are familiar with the wp job manager plugin. Anyway, it has
[submit_job_form]
and[job_dashboard]
shortcodes. These shortcodes renders job sumbit and edit forms.When I submit these forms, your plugin method
handle_callback
gets$job_id
from the form submission in line number 985 and dies in line number 1116. Also you have an undefined variable$mail
in line number 1098.I tried by myself, but could not fix it. I tried to remove the action conditionally like:
But I failed because the
transcoder_handler
property is private.So maybe renaming the variable
job_id
in thefilter_input
function (line number 985) can fix the issue.Really appreciate your help.
Thanks
Razor
The text was updated successfully, but these errors were encountered: