xaglen
Forum Replies Created
-
Forum: Plugins
In reply to: [Justified Gallery] images are distorted when live but not in previewSOLVED: the problem was my theme (Customizr) which has an option buried in the settings to delay the loading of images. Having that active somehow messed with the CSS (and apparently the lazy loading is only invoked on live views, not page previews).
If you are using Customizr and run into this problem, the setting in question is Customize > Advanced Options > Website Performances > Load Images On Scroll
Forum: Plugins
In reply to: [Plugin: Indigestion ] Weekly digest? And draft by default?Problem 2 is easy to solve. In indigestion-plus-main.php on line 139 you should change the default value to ‘draft’ instead of ‘published’.
Problem 1 I am less sure about. I think this will work:
In indigestion-plus-main.php on line 38 change ‘daily’ to ‘weekly’
In indigestion-plus-super.php line 61 you should change ‘daily’ to ‘weekly’ there as well.
Forum: Fixing WordPress
In reply to: Exclude author from RSS feedYou can specify the author to exclude like so:
http://example.com/feed/?author=-4Or you can specify only the authors you want to include:
http://example.com/feed/?author=1,2,6Where author is equal to the author’s ID number (you can see this on your wp-admin page on the “Users” tab and the “Authors and Users” subtab)