-
Notifications
You must be signed in to change notification settings - Fork 138
How to remove Magefan Blog extension
Just in case please make full backup of your Magento 2 file system & Data Base.
Please connect over FTP or SSH and remove Magefan_Blog extension folder. It can be found in one of this locations:
- path_to_your_magento2/app/code/Magefan/Blog
- path_to_your_magento2/vendor/magefan/module-blog
Please run next MySql queries. You can use phpMyAdmin for this purpose.
DELETE FROM setup_module WHERE module = "Magefan_Blog";
DELETE FROM core_config_data WHERE path LIKE 'mfblog/%'
DROP TABLE IF EXISTS magefan_blog_category;
DROP TABLE IF EXISTS magefan_blog_category_store;
DROP TABLE IF EXISTS magefan_blog_post;
DROP TABLE IF EXISTS magefan_blog_post_category;
DROP TABLE IF EXISTS magefan_blog_post_relatedpost;
DROP TABLE IF EXISTS magefan_blog_post_relatedproduct;
DROP TABLE IF EXISTS magefan_blog_post_store;
DROP TABLE IF EXISTS magefan_blog_post_tag;
DROP TABLE IF EXISTS magefan_blog_tag;