Hello, Patreon! I’m a creator from Russia and, AFAIK, I’ve found 2 bugs in your Wordpress plugin. I’m using it to lock patron-only content on my site https://beardycast.com/ — it includes text and audio (podcasts).
And it works mostly great, but:
-
There’s an issue with Feedly mobile app on iOS and, probably, Android app and web-version also. While Patreon plugin locks out content from different RSS readers, native Feedly application shows embedded audio that must be locked (but it works fine with locked text). I’ve added screenshot that you can visualize what I’m talking about and get a look into it;
-
After you’ve added feature to lock out partial content on the site via plugin, it got mad. After I’ve installed SSL certificate, sometimes Patreon plugin looses it’s mind and starting to lock out every image on my site. I’m dealing with it via customizing
.htaccess
file, where I’m disabling additional Wordpress plugin code. The code is:
#BEGIN Patreon WordPress Image Protection
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} (\.png|\.jpg|\.gif|\.jpeg|\.bmp)
RewriteCond %{HTTP_REFERER} !/wp-admin/ [NC]
RewriteRule ^wp-content/uploads(.*)$ index.php?patreon_action=serve_patron_only_image&patron_only_image=$1 [QSA,L]
#END Patreon Wordpress
I’m locking it out with <IfModule mod_rewrite.c-disable></IfModule>
code. But it’s annoying since some backend and frontend changes triggers it again and rewrite Patreon Image Protect code in .htaccess
file. After that I need to add custom code again.
Do you have any ideas, why that might happen or how I can permanently fix it?