Hi Mike!
Interesting plugin. You might want to think about re-working your Apple products detector, its throwing a soft error (undefined index).
Why not replace:
if (!(strstr($_SERVER['HTTP_USER_AGENT'],'iPad') && strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') && strstr($_SERVER['HTTP_USER_AGENT'],'iPod'))) {
to:
if (!(strstr($_SERVER['HTTP_USER_AGENT'],'iP'))) {
on line 52.
A little simpler.
Also need to check for empty user-agent.
Regards!
@brianbrown
I’d love the ability for the end user to enable/disable Farticles from the front end.
On the backend – a facility to allow this choice, and then the ability to specify initial state of on or off as the default. I’m not a coder, but a basic wordpress site builder.
Thanks!