• Resolved jules22

    (@jules22)


    Hi is it possible to delete notifications log via Phpmyadmin. If so which table(s) ? Delete all does not work, critical error. Memory timeout is high.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Riza Maulana Ardiyanto

    (@rizaardiyanto)

    Hi @jules22

    You could delete it from phpMyAdmin by running these queries:

    • This will delete all notification logs(comments)
    DELETE FROM wp_comments WHERE comment_type = 'notification'
    • This will delete all notification logs(comments) meta
    DELETE FROM wp_commentmeta WHERE meta_key LIKE '%_ppnotif_%'

    NOTE: Please always take a backup before doing any changes to your database. In case something goes wrong, you could always revert it back.

    Thread Starter jules22

    (@jules22)

    Worked great, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Deleting Notifications Log’ is closed to new replies.