Error with rewrite rules
-
There’s an error with the rewrite rules.
In functionsendinblue_woocommerce_rewrites
in filewoocommerce-sendinblue.php
on line 146, the rewrite rule is added inside an array, which is not valid.Instead of:
$wp_rules[] = array( "sendinblue-callback\$" => 'index.php?pagename=sendinblue-callback' );
write this:
$wp_rules[ 'sendinblue-callback\$' ] = 'index.php?pagename=sendinblue-callback';
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Error with rewrite rules’ is closed to new replies.