Viewing 3 replies - 1 through 3 (of 3 total)
  • On line 451, you should see the following code:
    if(!is_null($metaList) && count($metaList) > 0 && metaList != '')

    If you are running php5, you can replace it with the following:
    if(!empty($metaList))

    Had the same issue as well. It appears that the check for null values doesn’t work properly and lets an empty value slip by, causing the attempt to loop through it to throw an error. Hope this helps.

    Thread Starter slionais

    (@slionais)

    Great working now.

    Hello,

    Thank you for the fix.
    I integrated it into the new version.

    Regards,
    Eric Le Bail

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Category Meta plugin] Error when attempting to edit categoies’ is closed to new replies.