Title: Dan Bernardic's Replies | WordPress.org

---

# Dan Bernardic

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailchimp List Subscribe Form] Loading JS in the footer](https://wordpress.org/support/topic/loading-js-in-the-footer/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/loading-js-in-the-footer/#post-4103450)
 * Thank you. As for reasoning – it is considered a site optimization technique 
   to load javascript in the footer. Your team probably knows this, but they could
   look at this if they do not: [http://stackoverflow.com/questions/5329807/benefits-of-loading-js-at-the-bottom-as-opposed-to-the-top-of-the-document](http://stackoverflow.com/questions/5329807/benefits-of-loading-js-at-the-bottom-as-opposed-to-the-top-of-the-document)
 * The change would be – in [http://plugins.svn.wordpress.org/mailchimp/trunk/mailchimp.php](http://plugins.svn.wordpress.org/mailchimp/trunk/mailchimp.php)
   at lines 91 and 92:
 *     ```
       wp_enqueue_script('jquery_scrollto', MCSF_URL.'js/scrollTo.js', array('jquery'), MCSF_VER);
       wp_enqueue_script('mailchimpSF_main_js', MCSF_URL.'js/mailchimp.js', array('jquery', 'jquery-form'), MCSF_VER);
       ```
   
 * Just change it to:
 *     ```
       wp_enqueue_script('jquery_scrollto', MCSF_URL.'js/scrollTo.js', array('jquery'), MCSF_VER, apply_filters( 'mailchimpSF_scripts_in_footer', false ) );
       wp_enqueue_script('mailchimpSF_main_js', MCSF_URL.'js/mailchimp.js', array('jquery', 'jquery-form'), MCSF_VER, apply_filters( 'mailchimpSF_scripts_in_footer', false ) );
       ```
   
 * Thanks! Let me know if you have further questions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Errors when DB user does not have "SUPER" privilege](https://wordpress.org/support/topic/errors-when-db-user-does-not-have-super-privilege/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/errors-when-db-user-does-not-have-super-privilege/#post-3470051)
 * Just a small follow-up – I asked a little bit about this on #mysql on freenode,
   and the consensus there was that it is a bad idea for a app-level DB user to 
   ever have the SUPER privilege.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [missing privacy option in settings am using delicate theme](https://wordpress.org/support/topic/missing-privacy-option-in-settings-am-using-delicate-theme/)
 *  [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/missing-privacy-option-in-settings-am-using-delicate-theme/#post-3404701)
 * Check under Settings > Reading
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Editorial Calendar] [BugFix] Last Day of Month has month-future class](https://wordpress.org/support/topic/bugfix-last-day-of-month-has-month-future-class/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/bugfix-last-day-of-month-has-month-future-class/#post-3223792)
 * 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Editorial Calendar] [BugFix] Last Day of Month has month-future class](https://wordpress.org/support/topic/bugfix-last-day-of-month-has-month-future-class/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/bugfix-last-day-of-month-has-month-future-class/#post-3223781)
 * Ah! Never mind, I see what I did wrong.
 * It does have the same styling, you’re right.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Favorite Plugins Widget] [Plugin: Favorite Plugins Widget] Widget produces wrong links](https://wordpress.org/support/topic/plugin-favorite-plugins-widget-widget-produces-wrong-links/)
 *  [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/plugin-favorite-plugins-widget-widget-produces-wrong-links/#post-3130152)
 * Works just fine here.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] [Plugin: wpMandrill] Bug: array_replace() only defined in PHP 5.3](https://wordpress.org/support/topic/plugin-wpmandrill-bug-array_replace-only-defined-in-php-53/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wpmandrill-bug-array_replace-only-defined-in-php-53/#post-3073172)
 * Oh ya?
 * Good to know, thanks for the reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] [Plugin: wpMandrill] Bug: array_replace() only defined in PHP 5.3](https://wordpress.org/support/topic/plugin-wpmandrill-bug-array_replace-only-defined-in-php-53/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-wpmandrill-bug-array_replace-only-defined-in-php-53/#post-3073064)
 * OK, I won’t be lazy, and I will give you the exact error message:
 * Fatal error: Call to undefined function array_replace() in /…/wp-content/plugins/
   wpmandrill/wpmandrill.php on line 1799
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to Update ALL email addressess?](https://wordpress.org/support/topic/how-to-update-all-email-addressess/)
 *  [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/how-to-update-all-email-addressess/#post-2863540)
 * You’re welcome. You need a work-around.
 * One way would be to make some new email addresses, and put them into the accounts.
   You could forward each or all of those email addresses to your main email or 
   whatever.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to Update ALL email addressess?](https://wordpress.org/support/topic/how-to-update-all-email-addressess/)
 *  [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/how-to-update-all-email-addressess/#post-2863464)
 * Each account has to have a unique email address
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Grunion Contact Form] [Plugin: Grunion Contact Form] End of Support?](https://wordpress.org/support/topic/plugin-grunion-contact-form-end-of-support/)
 *  Thread Starter [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-grunion-contact-form-end-of-support/#post-2747524)
 * Thank you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Different background image for categories/category archive](https://wordpress.org/support/topic/different-background-image-for-categoriescategory-archive/)
 *  [Dan Bernardic](https://wordpress.org/support/users/dbernar1/)
 * (@dbernar1)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/different-background-image-for-categoriescategory-archive/#post-2243506)
 * Hi rusty.2000,
 * Probably the best way to accomplish this is to create a [child theme](http://codex.wordpress.org/Child_Themes)
   for sliding door.
 * Once you have that set up, in the style.css file you can add rules like this:
   
   body.category-projects-pastimes { background: url(images/image.jpg); }
 * View the source of each of the archive pages to find out which body class you
   should hook into.

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