"s2_form" filter is missed for form after submiting
-
The filter “s2_form” doesn’t apply for the form which displayed after submitting. To fix this bug I have changed line 121 in class-s2-frontend.php
from
$this->s2form = apply_filters('s2_form', $this->form);
to
$this->form = apply_filters( 's2_form', $this->form ); $this->s2form = $this->form;
Will be great if plugin’s author fix it in future version.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘"s2_form" filter is missed for form after submiting’ is closed to new replies.