Ben Palmer
Forum Replies Created
-
I’d have preferred this to be disabled by default rather than pushed to all sites in 5.3.
I have lots of sites using WP Retina Pro 2x which now means I have to go in and reupload banner images throughout to generate large full bleed crops.
Forum: Plugins
In reply to: [Nested Pages] Plugin not working after WordPress 4.8.1 updateI can confirm that 1.7.1 works fine, it’s the 2.0.1 update thats broken with 4.8.1
Forum: Plugins
In reply to: [Nested Pages] Pages are MIA after updateI also have the same problem as @seanseansean, hierarchical pages that have the same slug are redirecting to the last page/post with that particular slug
eg.
/page1/slug
/page2/slug
/page3/slugIf you go to /page1/slug or /page2/slug, they show /page3/slug but the url is showing correctly
I had this problem and there was an old verification code stuck in the wp_options database, try clearing that out
Have a look in the wp_options database for anything to do with yoast eg. yst_ga or something similar. Delete that row and then try again
Any fix for this problem yet? This happens to me and also when i turn off all sharing options, they still appear above excerpts
Forum: Plugins
In reply to: [Download Monitor] Logged in Users Being RedirectedI used this code, found elsewhere on the forums
function redirection() { $redirected_url = $_SERVER['HTTP_REFERER']; $download_url = $_SERVER['REQUEST_URI']; $download_redirect = urlencode("{$redirected_url}?redirect-to={$download_url}"); return get_permalink(152); // redirect to custom register page } add_filter('dlm_access_denied_redirect','redirection');
but it also seems to be a server issue. This works perfectly on my server and development server but for some reason, certain private files are being returned as access denied if this is in my functions.php