Title: DBZEROONE's Replies | WordPress.org

---

# DBZEROONE

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 28 total)

1 [2](https://wordpress.org/support/users/dbzeroone/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/dbzeroone/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Breeze Cache] JS Minification causing Contact Form 7 error](https://wordpress.org/support/topic/js-minification-causing-contact-form-7-error/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [5 years ago](https://wordpress.org/support/topic/js-minification-causing-contact-form-7-error/#post-14487503)
 * I’ve had this exact same problem on 3 sites now. The only reliable solution I’ve
   found thus far is to deactivate Breeze.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Flamingo] Spam Magnet – DO NOT PUT YOURSELF THROUGH THIS](https://wordpress.org/support/topic/spam-magnet-do-not-put-yourself-through-this/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/spam-magnet-do-not-put-yourself-through-this/#post-13597735)
 * > If I could give it zero stars, I would.
 * So instead you gave it 5 stars?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drag and Drop Multiple File Upload for Contact Form 7] Form won’t send with image attached](https://wordpress.org/support/topic/form-wont-send-with-image-attached/)
 *  Thread Starter [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/form-wont-send-with-image-attached/#post-13383530)
 * Turns out CF7 was marking outgoing emails as spam, which stopped them from sending.
   This is indicated by the CF7 error message with an orange border.
    To remedy 
   the issue, add this code to functions.php:
 *     ```
       //STOPS CF7 FROM FLAGGING EMAIL WITH LINKS AS SPAM
       add_filter('wpcf7_spam', '__return_false');
       ```
   
 * Edit: Further investigation revealed that the blocked keyword list (settings –
   discussion – Disallowed Comment Keys) included `https://` which instantly blocked
   any outgoing message with a URL.
    -  This reply was modified 5 years, 9 months ago by [DBZEROONE](https://wordpress.org/support/users/dbzeroone/).
      Reason: New information
    -  This reply was modified 5 years, 9 months ago by [DBZEROONE](https://wordpress.org/support/users/dbzeroone/).
    -  This reply was modified 5 years, 9 months ago by [DBZEROONE](https://wordpress.org/support/users/dbzeroone/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drag and Drop Multiple File Upload for Contact Form 7] Form won’t send with image attached](https://wordpress.org/support/topic/form-wont-send-with-image-attached/)
 *  Thread Starter [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/form-wont-send-with-image-attached/#post-13365886)
 * I just emailed the site info. Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Weather Widget] Change m/s to mph using shortcodes](https://wordpress.org/support/topic/change-m-s-to-mph-using-shortcodes/)
 *  Thread Starter [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/change-m-s-to-mph-using-shortcodes/#post-12747660)
 * This bug is showing the correct number, but the wrong units. Hopefully the developer
   will fix this in the next release, but until then if anyone else is having trouble
   with this bug, add the following code to your functions.php file. This will replace
   m/s with mph.
 *     ```
       // CHANGE OUTPUT OF WIND SPEED UNITS FROM m/s TO mph //
   
       function dbz_awesome_weather_wind_speed_text()
       {
         return $wind_speed_text[] = "mph";
       }
       add_filter('awesome_weather_wind_speed_text', 'dbz_awesome_weather_wind_speed_text');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Discontinued: Srizon Social Album :Do Not Install] Gallery Album Issues](https://wordpress.org/support/topic/gallery-album-issues/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/gallery-album-issues/#post-11243465)
 * I fixed it. In my theme’s includes/js there was a file called bootstrap-wp.js.
   In that file the very first line of code was:
 * `document.write("<style>body{display:none;}</style>");`
 * I think this was intended to hide the site until the entire page loaded, then
   something else fades it in. Stupid theme tricks. I commented out that line and
   now it works as intended. Thank you!
    -  This reply was modified 7 years, 3 months ago by [DBZEROONE](https://wordpress.org/support/users/dbzeroone/).
      Reason: clarity
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Discontinued: Srizon Social Album :Do Not Install] Gallery Album Issues](https://wordpress.org/support/topic/gallery-album-issues/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/gallery-album-issues/#post-11243422)
 * It does work with a default theme. Turning off all the plugins doesn’t change
   anythin. It’s definitely a problem with the theme, however I deregistered jQuery
   and enqueued various different versions up to 3.3.0 with no luck.
 * Any suggestions or suggested reading about tracking down and fixing conflicts?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Discontinued: Srizon Social Album :Do Not Install] Gallery Album Issues](https://wordpress.org/support/topic/gallery-album-issues/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/gallery-album-issues/#post-11242463)
 * I’m having the same problem… the thumbnails do not show until the browser window
   is resized or scrolled (on mobile).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Zoho Mail for WordPress] Contact Form 7 Reply-To not working properly](https://wordpress.org/support/topic/contact-form-7-reply-to-not-working-properly/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/contact-form-7-reply-to-not-working-properly/#post-10502168)
 * [@zmintegration](https://wordpress.org/support/users/zmintegration/) This is 
   NOT a workaround to OP’s problem.
 * The problem (which I am also struggling with) is that when a user fills out a
   contact form, the reply-to address that is set in the Contact Form 7 form is 
   not working. It should be the address of the user who filled out the form. The
   solution you provide above is for something completely different.
 * Do you have a workaround for this specific issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mivhak Syntax Highlighter] Can't get plugin to work, throws JS error](https://wordpress.org/support/topic/cant-get-plugin-to-work-throws-js-error/)
 *  Thread Starter [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/cant-get-plugin-to-work-throws-js-error/#post-7562952)
 * No luck. I tried with the standard WP themes and saved the settings as well with
   no difference.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] Front page not caching](https://wordpress.org/support/topic/front-page-not-caching/)
 *  Thread Starter [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/front-page-not-caching/#post-5492899)
 * I’m sorry for being unclear. Yes, I meant home page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Akeeba Backup CORE for WordPress] After update to 1.2.0.rc1: ERROR! Could not load the backup engine](https://wordpress.org/support/topic/after-update-to-120rc1-error-could-not-load-the-backup-engine/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/after-update-to-120rc1-error-could-not-load-the-backup-engine/#post-5492869)
 * RC3 works perfectly for me. Thank you!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Akeeba Backup CORE for WordPress] After update to 1.2.0.rc1: ERROR! Could not load the backup engine](https://wordpress.org/support/topic/after-update-to-120rc1-error-could-not-load-the-backup-engine/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/after-update-to-120rc1-error-could-not-load-the-backup-engine/#post-5492808)
 * I’m having the same problem, so I’m following these threads instead of starting
   a new topic. I hope that’s ok…
 * I deleted/re-installed version 1.2.0rc2, but the problem is persisting.
 * OS X 10.8.5
    PHP: 5.5.9-1ubuntu4.5
 * I will continue to watch these threads for the solution. Thank you!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Yet Another Photoblog] Neat Photo Blogging](https://wordpress.org/support/topic/neat-photo-blogging/)
 *  [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/neat-photo-blogging/#post-7866239)
 * The demo appears to be a dead link…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Akeeba Backup CORE for WordPress] Excluding directories gives AJAX error](https://wordpress.org/support/topic/excluding-directories-gives-ajax-error/)
 *  Thread Starter [DBZEROONE](https://wordpress.org/support/users/dbzeroone/)
 * (@dbzeroone)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/excluding-directories-gives-ajax-error/#post-5297462)
 * Even though I know better, magic_quotes _was_ on. I disabled it in php config
   editor on my server and that fixed the problem! Now I can exclude directories!
   Thank you nikosdion!

Viewing 15 replies - 1 through 15 (of 28 total)

1 [2](https://wordpress.org/support/users/dbzeroone/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/dbzeroone/replies/page/2/?output_format=md)