CodeBard
Forum Replies Created
-
Forum: Plugins
In reply to: [Patreon WordPress] Patreon pluginThat requires cross posting or post importing.
Post importing/syncing from Patreon to WP site is being worked on at this moment, and will be out likely in the next 1.5-2 weeks.
However it is not certain that the podcasts themselves could be directly imported to your site. When the post import feature is out, if it doesnt support automatically copying podcast audio to your site, then you will have to manually upload the files.
Forum: Plugins
In reply to: [Patreon WordPress] Patreon pluginPlease note that we provide support at official forunms:
https://www.patreondevelopers.com/c/patreon-wordpress-plugin-support/11
‘Cant find my podcast episodes in articles’ -> This is a bit unclear. Where are your podcasts posted? At Patreon? Which articles are you checking? Articles at your site or at Patreon?
Forum: Plugins
In reply to: [Patreon WordPress] Image Lock ErrorPlease note that the address for support is the official forum below:
https://www.patreondevelopers.com/c/patreon-wordpress-plugin-support/11
For that case you have, its likely that the post is not uploaded to/saved as an attachmet in WP in Media library. PW requires the image to be locked to be present in media library and needs it to have an attachment id.
From checking page code, no attachment info seems to be added to the inserted image on the page and it may not be present in media library.
You can try uploading it to media library, ensuring that it is there, and then inserting it via WP toolbar or other means into the post, and then locking it.
Forum: Plugins
In reply to: [Patreon WordPress] Patreon user identified as admin for login purposes?Please note that support is rendered at the official forums:
https://www.patreondevelopers.com/c/patreon-wordpress-plugin-support/11
The issues you are reporting was not reported by anyone else before. Where have you seen that particular back end bug?
If you have any plugins which modify user roles or registrations (or oAuth), they may interfere with process of creation of users in WP via Patreon login.
Forum: Plugins
In reply to: [Patreon WordPress] Email no longer coming in from PatreonTested, and it seems emails seem to be imported properly.
But if the user does not have his/her email verified at Patreon, the email will not be imported. It is expected behavior.
You may have been receiving users (especially old users) who dont have their email verified.
Forum: Plugins
In reply to: [Patreon WordPress] Compatibility with GutenbergHiding part of a post is not a feature is not possible with Patreon WordPress only.
Are you using Patron Pro?
Forum: Plugins
In reply to: [Patreon WordPress] Hide AdsDepends on how you display ads in your site. Because ads can be put anywhere in a site, there is no automated easy way to hide ads – not with any plugins in WP ecosystem.
First determine where you display your ads – which part of the theme. Then you can wrap it in the included code in the paper doc.
Forum: Plugins
In reply to: [Patreon WordPress] Thumbnails still visible, unlock does not workIt should work with an image gallery – except the large version of the image should appear inside the same page where relevant JS can act. If users click on the image in gallery and get taken to the image itself directly appearing in the browser, that wont work.
You can embed a gallery into a page or post, for example.
Forum: Plugins
In reply to: [Patreon WordPress] Thumbnails still visible, unlock does not workUsers directly viewing a media file is the problem since it does not allow serving the JS that enables users to click on the image to unlock it.
If the large version of the image appears in a post, then the users should be able to click on the image to unlock it. It doesnt need to be attachment page, it can be inside the very post.
So any solution other than directly linking an image to have users directly view the images in their browser outside a web page, should work.
Forum: Plugins
In reply to: [Patreon WordPress] Thumbnails still visible, unlock does not workIn this particular case:
Thumbnail not being locked in the first case but being locked when you click on it points to the earlier version of the thumbnail having been cached – likely by your browser. Trying a CTRL+F5 (or your os/browser equivalent) to force a refresh on the initial page may force the image to be refreshed, therefore showing the gated image.
As for unlocking the image – when you directly view an image in your browser, its the bare image without anything else, including the JS code that allows unlocking an image. This is why you cant unlock an image when you are viewing it from the source.
But, when displayed inside the page/post itself, the image should be unlockable properly when you click on it – because the JS code to unlock the image should be loaded with the page.
…
The plugin normally sends caching headers to prevent gated pages from being cached by browsers or CDNs. But if you are just embedding images in an unlocked page, these caching headers will not be sent. Hence leading to gated images being cached.
If you gate the page/post the images are in, and also gate the images inside, this could prevent the problem that you are experiencing.
Also checking your caching plugin to see if any caching headers are being sent to cache images for long duration. This may be in your web server config as well.
Forum: Plugins
In reply to: [Patreon WordPress] Hide AdsYou can read how you can use hiding ads feature in the below paper doc until it is posted somewhere more permanent:
There are plenty of sites using the pro plugin, however since this is the WP support forum of the free plugin, we cannot promote the pro version here sorry.
Tested with the package you provided above:
When used from inside a function hooked to ‘wp’ hook, wpfc_exclude_current_page() does not trigger.
It turns out that if a page is cached, functions hooked to ‘wp’ action hook do not become available. Likely because WP Fastest Cache does its processing at a hook earlier than ‘wp’ hook?
What is the latest action hook which this function can be called during WP’s initialization?
Note: You need to add the following line into the wp-config.php to detect that the page is excluded by which plugin or theme.
Is it ok if we define this in a plugin file instead of adding it to wp-config.php?
Because it is inconvenient to have thousands of users add this line to their wp config.
Checking for a constant could definitely work. I believe WP Super Cache and W3 Total Cache are also doing it. Fastest Cache can check if that constant is defined, and then skip serving page from cache.