Title: johnamp's Replies | WordPress.org

---

# johnamp

  [  ](https://wordpress.org/support/users/johnamp/)

 *   [Profile](https://wordpress.org/support/users/johnamp/)
 *   [Topics Started](https://wordpress.org/support/users/johnamp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/johnamp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/johnamp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/johnamp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/johnamp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/johnamp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Breeze Cache] Breeze and Rank Math Dashboard issue](https://wordpress.org/support/topic/breeze-and-rank-math-dashboard-issue/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/breeze-and-rank-math-dashboard-issue/#post-18388677)
 * Answering my own question in case someone else comes here looking too. I went
   through a ChatGPT session and it was suggested I add this to .htaccess for Apache
   server. So far this is working.
 *     ```wp-block-code
       # Exclude Rank Math from caching<IfModule mod_headers.c>    <FilesMatch "^wp-json/rankmath/.*$">        Header set Cache-Control "no-cache, no-store, must-revalidate"        Header set Pragma "no-cache"        Header set Expires "0"    </FilesMatch></IfModule>
       ```
   
 * If that doesn’t work for you, try:
 *     ```wp-block-code
       <IfModule mod_rewrite.c>RewriteEngine On# Exclude Rank Math REST API from cachingRewriteCond %{REQUEST_URI} ^/wp-json/rankmath/ [NC]RewriteRule .* - [E=Cache-Control:no-cache]# Also exclude wp-admin and wp-login.php (optional but recommended)RewriteCond %{REQUEST_URI} ^/wp-admin [OR]RewriteCond %{REQUEST_URI} ^/wp-login\.phpRewriteRule .* - [E=Cache-Control:no-cache]</IfModule>
       ```
   
 * I f you don’t have access to .htaccess, try:
    1. **Check Breeze Advanced Settings**
    2.  - Ensure **“Disable Cache for Administrator”** is enabled.
        - Under **“Exclude URLs”**, manually add:
 *     ```wp-block-code
       /wp-json/rankmath/* /wp-admin/*
       ```
   
 * Refresh admin dashboard and then clear cache again. Rank Math Widget should appear
   okay.
 * Wait a day for the auto cache clearing and double check that Rank Math Widget
   is okay.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Instant Images - One-click Image Uploads from Unsplash, Openverse, Pixabay, Pexels, and Giphy] Instant Images <= 5.2- Auth. Server-Side Request Forgery (SSRF) vulnerability](https://wordpress.org/support/topic/instant-images-5-2-auth-server-side-request-forgery-ssrf-vulnerability/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/instant-images-5-2-auth-server-side-request-forgery-ssrf-vulnerability/#post-16604298)
 * Thanks for the quick response.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder Gutenberg Blocks – Kioken Blocks] Linking to image attachment page or file](https://wordpress.org/support/topic/linking-to-image-attachment-page-or-file/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/linking-to-image-attachment-page-or-file/#post-12173337)
 * Thank you. I knew I lost it somewhere. Didn’t think to look there. Personally
   I would not expect it to be there but that may be the years of finding it on 
   the side editor.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Gallery breaks with update to 5.3. Images show as unordered list](https://wordpress.org/support/topic/gallery-breaks-with-update-to-5-3-images-show-as-unordered-list/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/gallery-breaks-with-update-to-5-3-images-show-as-unordered-list/#post-12139222)
 * This got submitted twice. Sorry.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Gallery breaks with update to 5.3. Images show as unordered list](https://wordpress.org/support/topic/gallery-breaks-with-update-to-5-3-images-show-as-unordered-list-2/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/gallery-breaks-with-update-to-5-3-images-show-as-unordered-list-2/#post-12139215)
 * That link was close, I have tried adjusting the CSS and it was formatting the
   first image but then while looking at the code I found this issue. When using
   the 2019 theme, it appears to work. So I guess something in the theme I am using
   is breaking the unordered list as well.
 * In the editor, the code is
 *     ```
       <figure class="wp-block-gallery columns-2 is-cropped">
         <ul class="blocks-gallery-grid">
           <li class="blocks-gallery-item">...</li>
           <li class="blocks-gallery-item">...</li>
           <li class="blocks-gallery-item">...</li>
           <li class="blocks-gallery-item">...</li>
         </ul>
       </figure>
       ```
   
 * and in the rendered page, the code is
 *     ```
       <figure class="wp-block-gallery columns-2 is-cropped">
         <ul class="blocks-gallery-grid">
           <li class="blocks-gallery-item">...</li>
         </ul>
       </figure> 
       <li class="blocks-gallery-item">...</li>
       <li class="blocks-gallery-item">...</li>
       <li class="blocks-gallery-item">...</li>
       ```
   
 * Thanks for link above, I did not see it while doing a search for the issue.
    -  This reply was modified 6 years, 7 months ago by [johnamp](https://wordpress.org/support/users/johnamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg Block Editor Toolkit – EditorsKit] Additional CSS not saving](https://wordpress.org/support/topic/additional-css-not-saving-3/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/additional-css-not-saving-3/#post-11871893)
 * Hi sorry for the delay. Took an impromptu weekend camping trip.
    We are using
   WordPress 5.2.2 with Gutenberg built in. We have used commas in the class box
   as well to no effect. Pressing enter didn’t save it either. If I find anything
   else, will let you know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Debugging] Multisite PHP notice](https://wordpress.org/support/topic/multisite-php-notice-2/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/multisite-php-notice-2/#post-11858322)
 * I have tried it on a second instance of a multisite and I don’t see the error
   there. It looks like it is that one install specific. Tracked it down to custom
   function that one of the other developers had created and for some reason, this
   error showed up. Oddly, it didn’t show up if I had debug set to true manually
   without your plugin.
    So all good. Thank you for the quick reply.
    -  This reply was modified 6 years, 9 months ago by [johnamp](https://wordpress.org/support/users/johnamp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Product Dependencies] Products by category not working](https://wordpress.org/support/topic/products-by-category-not-working/)
 *  Thread Starter [johnamp](https://wordpress.org/support/users/johnamp/)
 * (@johnamp)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/products-by-category-not-working/#post-10832048)
 * Hi,
    The Product A was in completed status when trying the Owner testing with
   category dependency. I have tried testing it again and it still had the same 
   result. I am waiting on time approval to set up a clean site to test it again
   without all the other plugins to see if there is a conflict. I have tested it
   with non-WooCommerce plugins disabled but not a standard WP theme.

Viewing 8 replies - 1 through 8 (of 8 total)