kasperkamperman
Forum Replies Created
-
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Cache compatibilityIt seems that the only easy work around is that the plugin sets cookies with Javascript: https://www.webmalama.com/wordpress-super-cache-and-setting-cookies/
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Cache compatibilityI’ve tested the plugin but in combination with WP Super Cache it doesn’t seem to work. The accept button keeps popping-up after you click accept.
Forum: Reviews
In reply to: [EU Cookie Law for GDPR/CCPA] first one that blocks vimeo embedsAnother thing is that maybe css could be added in the admin, to customize button and text-styling (although I can override things within style.css).
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Eu cookie law and Google AnlyticsBy the way it’s possible to bypass scripts… so in that when only embedded content gets blocked (Exclude Scripts checkbox).
Forum: Plugins
In reply to: [EU Cookie Law for GDPR/CCPA] Eu cookie law and Google AnlyticsIndeed, it might be good to be able to bypass analytics. The reason is that when you properly configure analytics (anonymous IP, don’t share anything with Google for other purposes) a consent is not obligated.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] .entry-footer placement in one line@erik_hansen suggested this:
body:not(.search-results) article:not(.type-page) .entry-footer > span:not(:first-child):before { display: inline; }
However that didn’t work for me either.
I found the solution though. This is the code I’ve added in the end and that works for me (also using answers above from @erik_hansen):
@media screen and (min-width: 61.5625em) { /* Revert settings from the parent theme. We always want footer information at the bottom and not on the left if we have a wider screen. */ body:not(.search-results) article:not(.type-page) .entry-content { width: 100%; } body:not(.search-results) article:not(.type-page) .entry-footer { /*float: left;*/ /* margin-top: 0.1538461538em; */ /*width: 21.42857143%; */ margin-top: 2.1538461538em; width: 100%; } body:not(.search-results) article:not(.type-page) .entry-footer > span:not(:last-child):after { /*display: none;*/ display: inline-block; } .single .byline, .full-size-link, body:not(.search-results).group-blog .byline, body:not(.search-results) .entry-format, body:not(.search-results) .cat-links, body:not(.search-results) .tags-links, body:not(.search-results) article:not(.sticky) .posted-on, body:not(.search-results) article:not(.type-page) .comments-link, body:not(.search-results) article:not(.type-page) .entry-footer .edit-link { display: inline-block; margin-bottom: 0.5384615385em; } }
- This reply was modified 7 years, 11 months ago by kasperkamperman.