Fix to version WP 4.6 & CF7 4.5
-
In combination WP 4.6 and CF7 4.5 this plugin doesn’t work. To fix this i change line 313 in wpcf7_repeater.php from:
$index = $tag->get_option('index', 'int', true);
to$index = $tag->get_option('index', '', true); $index = trim($index) == "" ? 0 : intval($index);
With this fix it seems to work.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Fix to version WP 4.6 & CF7 4.5’ is closed to new replies.