Title: Code Muffin's Replies | WordPress.org

---

# Code Muffin

  [  ](https://wordpress.org/support/users/code-muffin/)

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Images to WebP] Stuck on “Loading all subdirectories…”](https://wordpress.org/support/topic/stuck-on-loading-all-subdirectories/)
 *  Thread Starter [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/stuck-on-loading-all-subdirectories/#post-18115460)
 * I tried running it on a separate directory, outside of _wp-content/uploads_, 
   and it worked.
 * Could this be because I use a symlink for my _uploads_ directory? On initial 
   page load, the subdirectories load fine. But the images just don’t get converted
    -  This reply was modified 1 year, 7 months ago by [Code Muffin](https://wordpress.org/support/users/code-muffin/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fly Dynamic Image Resizer] FLY alternative plugin](https://wordpress.org/support/topic/fly-alternative-plugin/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/fly-alternative-plugin/#post-17252540)
 * Try this one: [https://wordpress.org/plugins/better-image-sizes/](https://wordpress.org/plugins/better-image-sizes/)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Search Exclude] Avoid](https://wordpress.org/support/topic/avoid-79/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [3 years ago](https://wordpress.org/support/topic/avoid-79/#post-16747046)
 * **Stuffing a good product with bloatware** is like shooting yourself in the foot
   because you’re literally making a negative contribution to it.
    -  This reply was modified 3 years ago by [Code Muffin](https://wordpress.org/support/users/code-muffin/).
    -  This reply was modified 3 years ago by [Code Muffin](https://wordpress.org/support/users/code-muffin/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Menu Editor] Suggestion for Autoload Issues (ws_menu_editor in wp_options)](https://wordpress.org/support/topic/suggestion-for-autoload-issues-ws_menu_editor-in-wp_options/)
 *  Thread Starter [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/suggestion-for-autoload-issues-ws_menu_editor-in-wp_options/#post-15362381)
 * Ah, I probably didn’t save again after enabling that setting
 * Nice one, thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Find My Blocks - Locate blocks on your site] Clicking plus symbol seems to do nothing](https://wordpress.org/support/topic/clicking-plus-symbol-seems-to-do-nothing/)
 *  Thread Starter [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/clicking-plus-symbol-seems-to-do-nothing/#post-15049270)
 * Thanks, I realised in hindsight I was being dumb anyway 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Find My Blocks - Locate blocks on your site] Find my Blocks not available](https://wordpress.org/support/topic/find-my-blocks-not-available/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/find-my-blocks-not-available/#post-14890091)
 * Great stuff, and thanks for the great plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Find My Blocks - Locate blocks on your site] Menu item is above core Tools items](https://wordpress.org/support/topic/menu-item-is-above-core-tools-items/)
 *  Thread Starter [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/menu-item-is-above-core-tools-items/#post-14890086)
 * Edit: Having it in the top position also means that when you click Tools, “Find
   My Block” shows, instead of the default WP Tools page.
 * Could you change this please, as it goes against the native WP functionality?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Find My Blocks - Locate blocks on your site] Error when loading- no setting option detected](https://wordpress.org/support/topic/error-when-loading-no-setting-option-detected/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/error-when-loading-no-setting-option-detected/#post-14820361)
 * I came here to say the same thing. It needs an isset, ie this:
 * `if ( $settings[ 'include_drafts' ] == "true" ) {`
 * Should be:
 * `if ( isset( $settings[ 'include_drafts' ] ) && $settings[ 'include_drafts' ]
   == "true" ) {`
 * You may also want to register the plugin’s settings, I wrote a gist a while ago
   that covers the options you can use:
 * [https://gist.github.com/ithinkandicode/10ee890dd6f91354e3a52af2c8a082c2](https://gist.github.com/ithinkandicode/10ee890dd6f91354e3a52af2c8a082c2)
 * It doesn’t mention using activation hooks but they’re worth looking into too:
 * [https://developer.wordpress.org/plugins/plugin-basics/activation-deactivation-hooks/](https://developer.wordpress.org/plugins/plugin-basics/activation-deactivation-hooks/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Find My Blocks - Locate blocks on your site] List of posts where a certain reusable block has been used](https://wordpress.org/support/topic/list-of-posts-where-a-certain-reusable-block-has-been-used/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/list-of-posts-where-a-certain-reusable-block-has-been-used/#post-14791805)
 * In the mean time, the excellent plugin [Reusable Blocks Extended](https://wordpress.org/plugins/reusable-blocks-extended/)
   adds a new menu item named **Blocks** which shows all your reusable blocks, and
   includes a column listing the posts they’re used on.
 * Here’s a direct link to the plugin’s screenshot (GIF) showing this:
    [https://ps.w.org/reusable-blocks-extended/assets/screenshot-1.gif](https://ps.w.org/reusable-blocks-extended/assets/screenshot-1.gif)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Group to WordPress] FB posts appear in WP dashboard, but aren’t published](https://wordpress.org/support/topic/fb-posts-appear-in-wb-but-arent-published/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/fb-posts-appear-in-wb-but-arent-published/#post-8905320)
 * Try going into Settings > Permalinks, and saving. You can also try changing the
   permalinks setting, saving, changing back, then saving again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] Instant Payment Notification (IPN) & SHA-256 — Possible future issue?](https://wordpress.org/support/topic/instant-payment-notification-ipn-sha-256-possible-future-issue/)
 *  Thread Starter [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/instant-payment-notification-ipn-sha-256-possible-future-issue/#post-6535248)
 * Thanks Scott, love the plugin btw!
 * jovanjane, if you’re not using the Pro version you don’t need to worry. If you
   are, please refer your host to the post Laura that linked to above.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MaxGalleria] Dashboard Style partially broken after Update to 4.0.5](https://wordpress.org/support/topic/dashboard-style-partially-broken-after-update-to-405/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/dashboard-style-partially-broken-after-update-to-405/#post-6323641)
 * The issue is that the plugin enqueues a Foundation stylesheet. It should do this
   only on the plugin pages, but it does this for every admin page, so fonts and
   colours are different.
 * The fix is to enqueue the plugin files only on the actual plugin pages.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Inline Spoilers] Padding Between Collapsed Spoiler Headings](https://wordpress.org/support/topic/padding-between-collapsed-spoiler-headings/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/padding-between-collapsed-spoiler-headings/#post-6246189)
 * Hi risaacson,
 * This CSS will remove the space between collapsed spoilers:
 * `div.spoiler-wrap {margin: 0 auto;}`
 * You can find the stylesheet at the location below, but for custom CSS changes
   you’d be best adding the CSS to your theme’s stylesheet, or installing a plugin
   that lets you add custom CSS.
 * `/wp-content/plugins/inline-spoilers/styles/inline-spoilers-default.css?ver=1.0`
 * Removing the margins around the spoilers does mean that there’s no space below
   them though – so any content below them might look strange.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Limit Login Attempts] Locked Out](https://wordpress.org/support/topic/locked-out-68/)
 *  [Code Muffin](https://wordpress.org/support/users/code-muffin/)
 * (@code-muffin)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/locked-out-68/#post-6211090)
 * The FAQs section covers this – it’s the last item, titled “I locked myself out
   testing this thing, what do I do?”. The quickest way is to rename the plugin 
   folder, providing you have FTP access.

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