-
Notifications
You must be signed in to change notification settings - Fork 815
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Infinite Scroll: Privacy Policy link missing from footer #9435
Comments
Hi, all! I'm a wordpress noob and interested in filing a fix for this. After following the link above and poking around a bit on a local dev installation, it seems like tweaking I'll work on figuring out php testing tomorrow, but it would be great if someone could tell me whether it looks like I'm on the right track so far. Thanks! |
@laghee thanks for working on this! Your code seems to be a good solution, but it's hard to tell without looking at the diff and testing. Would you mind submitting a pull request? You can learn about how to do it here: https://github.com/Automattic/jetpack/blob/master/docs/guides/submit-patch.md |
@zinigor Will do! |
Fixes #9435 WP bundled themes now have a privacy policy link in their footer, which is helpful for complying with GDPR rules, but users who enable the infinite footer lose that link. This adds a similar link to the infinity footer $credits. #### Changes proposed in this Pull Request: * Add a privacy policy link to `$credits` to mimic the new WP bundled theme link #### Testing instructions: <!-- Add as many details as possible to help others reproduce the issue and test the fix. "Before / After" screenshots can also be very helpful when the change is visual. Would you like this feature to be tested by Beta testers as well? Please add instructions to to-test.md in a new commit as part of your PR. --> * Publish the privacy policy page on test site * Enable infinite scroll with this patch applied * Scroll down to display the infinite footer * Confirm that it now includes a link to the privacy policy page (Edit: Added extra step for testing.)
WP 4.9.6 is adding an extra link to the footer on bundled themes, see #43715-core.
If a site has the the infinite footer enabled, though, then it will not appear.
It seems like it might be worth adding similar a similar link to
$credits
, to mimic the default themes, and help users be GDPR-compliant.Steps to reproduce the issue
trunk
(or4.9.6-beta1
once it's available on Tuesday)What I expected
The privacy link should remain, since it's important for GDPR compliance.
What happened instead
The link is gone, because the infinite footer is hardcoded.
The text was updated successfully, but these errors were encountered: