How to hide or change mobile header logo with Additional CSS or custom PHP
How to hide or change mobile header logo with Additional CSS or custom PHP
How to hide or change mobile header logo with Additional CSS or custom PHP
Mobile App Not Posting, Debugging Options
Not working Mobile view and Desktop view properly when we searched on website
Not able to see updates my mobile after making updates on wordpress mobile version
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.
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
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
Turns out the guy didn’t have his auto-rotate on. I apologise for the pointless question.
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
I just checked your site both on both mobile emulator of chrome and on my mobile ios phone and I don’t see the changes you are mentioning. I am not sure how you are determining whether you are on mobile or not, because you have not shown any code. A great PHP solution that I … Read more