Notice: Undefined index: meta_h1 in /home/administrator/system/storage /modification/catalog/controller/product/product.php on line 233 

If I clean

 if ($product_info['meta_h1']) { $data['heading_title'] = $product_info['meta_h1']; } else { $data['heading_title'] = $product_info['name']; } 

Then all the names of the goods and other things disappear. And everything works but the error hangs for some reason

    1 answer 1

    Try this:

     if ( !empty($product_info['meta_h1']) ) { $data['heading_title'] = $product_info['meta_h1']; } else { $data['heading_title'] = $product_info['name']; }