Home > Software design >  Transfer WordPress Plugin to a new site?
Transfer WordPress Plugin to a new site?

Time:11-18

how is the procedure to transfer one plugin to site A to B with the plugin data included? I am able to transfer the FTP data for sure but I need the saved files of the plugin also. So I need to do some actions in the database.

Where do I find the plugins database, where to extract and import it? Did not find it in wpoptions.

Bests,

Download FTP data and extract it in new site.

CodePudding user response:

Some plugins have an import/export feature - Worth looking around settings if you haven't already.

CodePudding user response:

Looking the plugin code it seems that they insert reviews into posts table. So, in order to import them, you should use a post export/import system.

It saves in postmeta the ratings with type columns setted to wpcr3_review_rating and posts for comments with type wpcr3_review

  • Related