Viewing 1 replies (of 1 total)
  • I actually came across the above issue too and reported it on the developers blog https://mariuscristiandonea.com/2010/01/21/smooci-wordpress-on-mobiles-wordpress-plugin/

    He did say he would resolve it in the next update but obviously hasn’t gotten around to it. I won’t be too critical of someone who gives there work away for free.

    Luckily there is an easy fix although you will need to edit the file smooci-wordpress-on-mobiles/smooci-wordpress-on-mobiles.php either through FTP or WordPress itself.

    If you simply do a find on the term googlebot you’ll find it in amongst the list of devices that it treats as mobile.

    Simply delete it and you should be good to go.

    You can confirm this by using https://www.smart-it-consulting.com/internet/google/googlebot-spoofer/index.htm

    Finally I also add the below code directly above this section in order for the plugin not to redirect iPad users.

    $pos = strpos($useragent, ‘iPad’);
    if ($pos > 0)
    {
    return “not mobile”;
    }

    Tomorrow I need to find a way of offering a View Full Website link using this plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Smooci (WordPress on Mobiles)] This plugin may cause your website to be removed from google’ is closed to new replies.