helmutwalker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Disable “Block Recovery” for HTML BlocksAny updates on this? Makes it seem like the block is broken when it’s not
I just changed the settings to “Compress new images during upload” and now it shows that it has compressed the images but when I view the actual size of the photo it is using the original size and not the compressed size. It also has not uploaded the compressed size to the CDN. I am using WP Offload Media to move images to our CDN. Is this plugin not compatible with WP Offload Media?
When I see the “0 sizes compressed” message and click on the Details link all I see are a list of sizes, initial size is blank for all sizes, compressed says “not present” for all sizes, and date is blank for all sizes. Not explanation of why and no button available to compress the image.
I changed the settings to Transitional it is working properly now. In version 1.2.0 the add_theme_support function seemed to override any setting that was in the AMP settings, no matter if it was set to Standard or Transitional, but looks like now it does not. Thanks for the help.
This is also happening with 1.4.1. I do not have a live url to share as I am testing upgrading plugins on my local computer first before pushing to our live site.
But, for example: the url http://www.domain.com/blog/blog1 should show the desktop template while http://www.domain.com/blog/blog1?amp should show the amp template. When I upgraded the plugin the http://www.domain.com/blog/blog1 shows the amp template and disregards my code.
I only have the amp template enabled when the query string is present. In version 1.2.0 this code works, however I tested in both 1.3.0 and 1.4.0 and the amp template shows without the query string present.
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] Moving Captcha to BELOW comment text areaI had to hack this with some CSS. I am using the default comment form and the captcha was showing up above the comment field.
This CSS puts the captcha below the comment field and above the submit button
#commentform { position: relative; } .gglcptch { position: absolute; bottom: 55px; } .form-submit { margin-top: 110px; }