Separate Mobile site

You could enable multisite and set up your mobile version on a subdomain. That would allow you to control both fairly easily. However it would ultimately be better to just make the original site responsive.

wordpress fancybox responsive mobile or pc version [closed]

I am presuming you are using the Easy Fancybox plugin, or some equivalent plugin. Your problem could be solved by applying custom css after Fancybox has loaded, as suggested by the plugin author here. In essence, you can use media-queries to specify the size of the Fancybox to be different on various devices. See for … Read more

different startsite for IOS and change menu

If the url’s for both site is different, You can simply check if site is being viewed from mobile or not and than you can redirect to your second site if it is mobile… Here is one of code who detects whether it is mobile or not… http://detectmobilebrowsers.mobi/ You can use such code detect mobile … Read more

Links not showing up on “AMPforWP”

i didn’t use this plugin but if i were you i use .htacces to redirect mobiles users to amp url Assuming your amp version is under /amp (http://example.com/amp), you can try redirecting your visitors in your .htaccess file like this: RewriteEngine On RewriteCond %{REQUEST_URI} !/amp$ [NC] RewriteCond %{HTTP_USER_AGENT} (android|blackberry|googlebot\-mobile|iemobile|iphone|ipod|\#opera\ mobile|palmos|webos) [NC] RewriteRule ^([a-zA-Z0-9-]+)([\/]*)$ https://example.com/$1/amp [L,R=302] … Read more