FrankM1 / radium-one-click-demo-install

Once Click Install for Wordpress
Other
113 stars 64 forks source link

Hide "Import Demo Data" button after importing #32

Open umairrazzaq opened 8 years ago

umairrazzaq commented 8 years ago

Hi, first of all i would to say big thanks to you for making our life much easier by providing this very useful function. It really works like charm, but I'm wandering if it can set to hide after importing content successfully?

Codevz commented 8 years ago

Hi,

Why you want hide import button ? Sometimes demo importer not works as well, then user need to re-import content. This is happened for my clients multiple times. Because wp issue or internet speed.

I think is better if you check, if imported before then just show a message that once demo imported. For this purpose you can set new option for checking demo importer button, example:

if ( get_option( 'is_demo_imported' ) ) {
  // echo 'This demo was imported before.';
}

If you're importing demo(s) via ajax process, so you can easily update_option after each imports.

Regards

umairrazzaq commented 8 years ago

Thanks a lot for reply. yes i think its the better way to handle this. My concern only was to make its process more simple & clean. Thanks again.