Pothi Kalimuthu
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] Does this plugin support nginx?This plugin supports nginx for years. What’s your site url? Can you please share the official nginx.conf file that you used?
Forum: Plugins
In reply to: [Mobile Detect] Newest VersionThe update is pushed to wp repo. Ref: https://plugins.trac.www.ads-software.com/changeset/2530110 . So, the update will be available in a day on every WP site.
Forum: Plugins
In reply to: [Mobile Detect] Newest VersionYes. Please allow me a couple of days. Thanks.
Forum: Plugins
In reply to: [Harrys Gravatar Cache] Critical Error on version 2.0.0@harry-milatz I already reviewed it four years ago! Ref: https://www.ads-software.com/support/topic/if-you-care-about-your-users-use-this-plugin/ .
Forum: Plugins
In reply to: [Harrys Gravatar Cache] Critical Error on version 2.0.0Thanks. It works now.
Forum: Plugins
In reply to: [Mobile Detect] Detect IpadPlease see the example (from the upstream library) at https://mobiledetect.net/ . Basically, we use the class name
TinyWP_Mobile_Detect
instead of the defaultMobile_Detect
to avoid conflict with other plugins that may include the same upstream package.Basically, your code would look like this…
$detect = new TinyWP_Mobile_Detect; // Any tablet device. if( $detect->isTablet() ){ }
I hope that helps!
- This reply was modified 4 years, 1 month ago by Pothi Kalimuthu. Reason: Fix class name
Forum: Plugins
In reply to: [Mobile Detect] Andoid version detectUnfortunately, no.
Forum: Plugins
In reply to: [Mobile Detect] Doesn’t work for Microsoft Surface Pro 3Sorry about the delay to respond. I haven’t been active in wp.org forums lately.
We depend on the upstream PHP package Mobile Detect to distinguish tablets and mobiles. Unfortunately, the upstream package hasn’t been updated for a while and an issue related to Windows Surface products is still pending. Ref: https://github.com/serbanghita/Mobile-Detect/issues/667. A pull request is pending approval too. Ref: https://github.com/serbanghita/Mobile-Detect/pull/826 . I will update the plugin as soon as we have a fix for it.
Thank you.
- This reply was modified 4 years, 5 months ago by Pothi Kalimuthu.
Forum: Reviews
In reply to: [Mobile Detect] Great for distinguishing between tablets and mobilesThanks a lot @vshura . Appreciate your time to test the plugin, to improve the plugin, to share what you learned and to write this review.
Forum: Plugins
In reply to: [Mobile Detect] Info – how to create ShortcodesHello @vshura,
Thanks for your time to create shortcodes with all relevant links and documentation. The aim of this plugin is to fix the shortcoming with the built-in WordPress function
wp_is_mobile
. So, when WP core fixeswp_is_mobile
in the future, this plugin would be retired. At that time, I don’t want anyone to miss any other features that this plugin may have. That’s one of the reasons no other feature was added to the plugin. I actually encourage add-on plugins or standalone plugins, if any other feature is missing in this plugin.Just updated the FAQ section of this plugin, mentioning the above point, as feature requests are coming bit frequently.
Pothi.
Forum: Reviews
In reply to: [Mobile Detect] KEEP UP GREAT WORK!Thank you.
I wasn’t aware of rest-routes plugin. A project that required rest api (for wpDataTables) is no longer active. So, I need to test it out on a demo environment to keep it handy for future projects. Thanks for the suggestion @samjco .
Forum: Plugins
In reply to: [User Access Manager] How do I “Limit access to uploaded files”There is a difference between hosting in wordpress.com and a self-hosted site. Ref: https://en.support.wordpress.com/com-vs-org/ . You may want to self-host if you’d like to restrict access to uploaded files.
Forum: Plugins
In reply to: [Mobile Detect] UsageWhile the plugin was originally developed to modify the core
wp_is_mobile
function, it is possible to use all the methods from the core MobileDetect PHP library.You may use something like the following code…
$detect = new TinyWP_Mobile_Detect; if ($detect->isMobile()) { # do stuff for mobile visitors }
These days, certain paid themes and (free / paid) plugins include MobileDetect PHP library on their own. In order to avoid the naming scheme conflict* with those, the library has been renamed to TinyWP_Mobile_Detect.
Thanks.
- This reply was modified 5 years, 5 months ago by Pothi Kalimuthu. Reason: fix typo
- This reply was modified 5 years, 5 months ago by Pothi Kalimuthu. Reason: fix formatting of code block
Forum: Fixing WordPress
In reply to: cURL error 60 when updating WordPressThat’s bit strange. No further idea on why the error occurs (“cURL 60: Peers Certificate is not recognized error”).