If you decided to remove Magento 2 Twitter Cards Extension by Magefan, please follow the steps below, also you can contact our team for a free consultation in case you have any issues with Magefan's extension.
Remove Extension Files
Removing files instruction depends on a way the extension has been installed.
1. If you can find the extension files in the folder
app/code/Magefan/TwitterCards
then remove this folder.
2. If the extension was installed via the composer and its files located in the folder
vendor/magefan/module-twitter-cards
then run composer CLI command to remove it
composer remove magefan/module-twitter-cards
Once extension files have been removed, run these Magento CLI commands:
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
Remove Extension Data (optional)
Attention! This will clean all the data.
1. Just in case please make a full backup (dump) of your Magento 2 database.
2. Run next MySQL queries to remove the extension data. E.g. you can use phpMyAdmin for this purpose.
DELETE FROM setup_module WHERE module = "Magefan_TwitterCards
";
DELETE FROM core_config_data WHERE path LIKE 'mftwittercards
/%';
DELETE FROM eav_attribute WHERE attribute_code ="magefan_tc_title";
DELETE FROM eav_attribute WHERE attribute_code = "magefan_tc_description";
DELETE FROM eav_attribute WHERE attribute_code = "magefan_tc_image";
DROP TABLE IF EXISTSmagefan_tc_blog_post
;
DROP TABLE IF EXISTSmagefan_tc_blog_category
;
DROP TABLE IF EXISTSmagefan_tc_cms_page
;