In preparation for moving to PHP 8.0 I'm working my way through various undefined array and variable warnings, mainly due to old un-maintained plugins. The cause of this warning
Code:
PHP Warning: Undefined variable $manufacturers_id in D:\wamp64\www\mydomain.co.uk\includes\modules\featured_products.php on line 21
appears to be the removal, by this plugin, of the $manufacturers_id which would usually be defined in html_header.php. I'm not sure how others have approached this but I have added this line back into that file.
PHP Code:
$manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';