I've had my wordpress page hosted in a free host. This host added some code in exchange of the free service, like two links to their free and paid services webpages into my Meta
widget.
For me it was ok at that time, but finally I moved my page to a VPS. I exported everything with All-in-One WP Migration
widget, and imported it in the new host.
So the problem is that these links from my previous free host have appeared again in my Meta
widget in the new host, due to the import that I've performed.
So basically, how can I remove them? How can I edit the Meta widget? I've tried to do it from the Desktop but I found no way to do it, so I guess it should be done directly modifying the file of the plugin... but I don't know which one it is.
I've had my wordpress page hosted in a free host. This host added some code in exchange of the free service, like two links to their free and paid services webpages into my Meta
widget.
For me it was ok at that time, but finally I moved my page to a VPS. I exported everything with All-in-One WP Migration
widget, and imported it in the new host.
So the problem is that these links from my previous free host have appeared again in my Meta
widget in the new host, due to the import that I've performed.
So basically, how can I remove them? How can I edit the Meta widget? I've tried to do it from the Desktop but I found no way to do it, so I guess it should be done directly modifying the file of the plugin... but I don't know which one it is.
Share Improve this question asked Apr 7, 2019 at 22:19 Btc SourcesBtc Sources 1031 silver badge4 bronze badges 5 |1 Answer
Reset to default 1There are 2 things you can do here. If you do not want to touch the source code, install any meta widget plugin editor (example - https://wordpress/plugins/custom-meta-widget/) and make required changes.
If you can access your code, then look for default-widget.php file, find the lines where you have the unnecessary links, delete them and save the file. Please keep a backup copy of the file before you try this.
wp_meta
. Look foradd_action
which has triggeredwp_meta
. Start with your theme function files. – Karun Commented Apr 8, 2019 at 7:13