Title: Eric's Replies | WordPress.org

---

# Eric

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] WP Offload Media – 404 for images](https://wordpress.org/support/topic/wp-offload-media-404-for-images/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/wp-offload-media-404-for-images/#post-15240898)
 * Hey [@ianbutty](https://wordpress.org/support/users/ianbutty/)
 * I looked over this and nothing jumps out at me as what might be going wrong. 
   But it’s been a while since I needed to dig into this and I haven’t kept up with
   how that code has been updated in later versions. So, maybe there’s another function
   somewhere that is defining the link check process?
 * Perhaps [@wpmudev-support8](https://wordpress.org/support/users/wpmudev-support8/)
   could give some input?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] WP Offload Media – 404 for images](https://wordpress.org/support/topic/wp-offload-media-404-for-images/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/wp-offload-media-404-for-images/#post-15237728)
 * [@ianbutty](https://wordpress.org/support/users/ianbutty/) I haven’t looked at
   this in several months, so I don’t know what changes they may have made in the
   plugin function…but in my code example did you change the $mysiteurl variable
   to include your actual domain?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] WP Offload Media – 404 for images](https://wordpress.org/support/topic/wp-offload-media-404-for-images/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/wp-offload-media-404-for-images/#post-15236953)
 * Hi [@ianbutty](https://wordpress.org/support/users/ianbutty/) – I have not re-
   implemented the fix; I only needed to do the scan for those files after a migration–
   so it was kind of a one-time (or very infrequent) need for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] WP Offload Media – 404 for images](https://wordpress.org/support/topic/wp-offload-media-404-for-images/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/wp-offload-media-404-for-images/#post-15233885)
 * I think a negative of just marking all of them as “not broken” is if one really
   was broken, then it would never get resolved/corrected.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] WP Offload Media – 404 for images](https://wordpress.org/support/topic/wp-offload-media-404-for-images/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/wp-offload-media-404-for-images/#post-14651860)
 * Sweet!
 * Thanks for the support [@wpmudevsupport12](https://wordpress.org/support/users/wpmudevsupport12/)
   and for the very helpful plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Broken Link Checker] WP Offload Media – 404 for images](https://wordpress.org/support/topic/wp-offload-media-404-for-images/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/wp-offload-media-404-for-images/#post-14648921)
 * Hi [@wpmudevsupport12](https://wordpress.org/support/users/wpmudevsupport12/),
 * Thanks for your reply. Unfortunately, the solution to exclude the path to the
   images from the check won’t work for me, because I am looking specifically for
   broken images.
 * I have come up with a solution by modifying the plugin.
    In the file //broken-
   link-checker/core/core.php I added:
 *     ```
       $mysiteurl ="//mysite.com/wp-content/uploads/";
        $amazons3url = "//mysitewp.s3.amazonaws.com/wp-content/uploads/";
        $originallink = $link->url;
        $link->url = str_replace($mysiteurl,$amazons3url,$originallink);
       ```
   
 * Add the above immediately before $link->chck( true ) in the work() function.
 * Now when I am running the broken link checker, I am getting 404 errors only on
   the images that are actually broken, as the URLs for the images moved by WP Offload
   Media are correctly passed to the checker.
 * I realize that this fix will not survive a plugin update. But in the short term,
   it seems to do the trick. If you see other issues with this solution, please 
   let me know.
 * Thanks,
    eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spotlight Social Feeds - Block, Shortcode, and Widget] Freezes on loading screen in admin panel](https://wordpress.org/support/topic/freezes-on-loading-screen-in-admin-panel/)
 *  [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/freezes-on-loading-screen-in-admin-panel/#post-13319895)
 * [@markzahra](https://wordpress.org/support/users/markzahra/) The update worked
   and all seems well. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spotlight Social Feeds - Block, Shortcode, and Widget] Can’t access settings in dashboard](https://wordpress.org/support/topic/cant-access-settings-in-dashboard/)
 *  Thread Starter [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/cant-access-settings-in-dashboard/#post-13288783)
 * [@markzahra](https://wordpress.org/support/users/markzahra/) This solution worked.
   Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spotlight Social Feeds - Block, Shortcode, and Widget] Freezes on loading screen in admin panel](https://wordpress.org/support/topic/freezes-on-loading-screen-in-admin-panel/)
 *  [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [5 years, 12 months ago](https://wordpress.org/support/topic/freezes-on-loading-screen-in-admin-panel/#post-13271731)
 * Having similar problem.
 * Plugin worked fine last week. Today, Instagram feeds are not displaying. In WP
   Dashboard, the Instagram Feeds menu choices (except “help” and “upgrade”) just
   display the “spotlight” logo slowly fading in and out.
 * Deactivating and reactivating plugin does not resolve the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet - Newsletters, Email Marketing, and Automation] Show WP Custom Fields in MailPoet Designer](https://wordpress.org/support/topic/show-wp-custom-fields-in-mailpoet-designer/)
 *  [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/show-wp-custom-fields-in-mailpoet-designer/#post-12514253)
 * [@initiator](https://wordpress.org/support/users/initiator/) you can create custom
   shortcodes in MailPoet- [https://kb.mailpoet.com/article/160-create-your-own-custom-shortcode](https://kb.mailpoet.com/article/160-create-your-own-custom-shortcode)
 * My thought is that you could potentially create a shortcode that pulls your data,
   and then render the shortcode in the newsletter.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Download Manager] Can’t save settings](https://wordpress.org/support/topic/cant-save-settings-36/)
 *  [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/cant-save-settings-36/#post-10678577)
 * [@ivanatanasov](https://wordpress.org/support/users/ivanatanasov/) I am a SiteGround
   customer as well, having the same issue.
 * Has there been any resolution to this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slider by Soliloquy - Responsive Image Slider for WordPress] firefox issues](https://wordpress.org/support/topic/firefox-issues-5/)
 *  [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/firefox-issues-5/#post-3788121)
 * Hi Thomas, thanks for your response.
 * I have cleared my cache and have restarted Firefox with all plugins disabled.
   The issue still persists.
 * I will take a screencast and upload it to the support ticket I opened at soliloquywp.
   com
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slider by Soliloquy - Responsive Image Slider for WordPress] firefox issues](https://wordpress.org/support/topic/firefox-issues-5/)
 *  [Eric](https://wordpress.org/support/users/masterchef93/)
 * (@masterchef93)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/firefox-issues-5/#post-3788106)
 * I am having the same issue as well with Soliloquy and Firefox.
 * The demo on the Soliloquy home page exhibits the same behavior. [http://soliloquywp.com/](http://soliloquywp.com/)
   first slide displays, second does not, caption misaligned.
 * Displays correctly in Chrome, IE, Safari, Opera

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