Title: Oli Ward's Replies | WordPress.org

---

# Oli Ward

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Custom sharing button doesn’t work](https://wordpress.org/support/topic/custom-sharing-button-doesnt-work/)
 *  [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/custom-sharing-button-doesnt-work/#post-8840156)
 * Same.
 * Also broken on this tutorial on the same subject:
 * [http://wphow.org/how-to-add-a-custom-sharing-service-to-jetpack/#themify_builder_content-3302](http://wphow.org/how-to-add-a-custom-sharing-service-to-jetpack/#themify_builder_content-3302)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Wordfence CSS/Javascript inserted in front-end if logged in](https://wordpress.org/support/topic/wordfence-cssjavascript-inserted-in-front-end-if-logged-in/)
 *  [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/wordfence-cssjavascript-inserted-in-front-end-if-logged-in/#post-7419476)
 * Thanks Matt, I can confirm this has fixed colorbox problem for me, I have removed
   my deregistering of jquery.colorbox v1.3.19, and all is good.
 * This is with Monitor Background Requests for False Positives enabled for both
   front-end and admin side.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Wordfence CSS/Javascript inserted in front-end if logged in](https://wordpress.org/support/topic/wordfence-cssjavascript-inserted-in-front-end-if-logged-in/)
 *  [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [10 years ago](https://wordpress.org/support/topic/wordfence-cssjavascript-inserted-in-front-end-if-logged-in/#post-7419315)
 * This was throwing issues on our site and affecting other jQuery.
 * I simply swapped out the jQuery ColourBox plugin that WordFence is loading for
   the most recent, using the `wp_enqueue_scripts` action hook:
 *     ```
       // after all other scripts are queued (priority 11), run our own un-queue and re-queue
       add_action( 'wp_enqueue_scripts', 'register_own_colorbox_script', 11 );
   
       function register_own_colorbox_script(){
       	// deregister WordFence's version
       	wp_deregister_script('jquery.wfcolorbox');
   
       	// register the up-to-date 1.6.4 version instead
       	wp_enqueue_script('jquery.wfcolorbox', 'https://cdnjs.cloudflare.com/ajax/libs/jquery.colorbox/1.6.4/jquery.colorbox-min.js', array('jquery'), '1.6.4');
       }
       ```
   
 * You might also want to queue the CSS for most recent ColorBox too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Share Buttons Adder] Single Quote (apostrophe) not displaying correctly](https://wordpress.org/support/topic/single-quote-apostrophe-not-displaying-correctly/)
 *  [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/single-quote-apostrophe-not-displaying-correctly/#post-6680221)
 * I can confirm the same, but sharing to Twitter.
 * I believe due to `esc_attr()`on line 99:
 * `$strPageTitle = esc_attr(strip_tags($strPageTitle));`
 * This is from the plugin file `simple-share-buttons-adder/inc/ssba_buttons.php`(
   version 6.1.1).
 * Which [WordPress documentation](https://codex.wordpress.org/Function_Reference/esc_attr)
   tells us
 * > Encodes the <, >, &, ” and ‘ (less than, greater than, ampersand, double quote
   > and single quote) characters.
 * I believe it is encoding apostrophe to HTML entity, which is then used directly
   by Twitter, or the email sharing functionality.
 * I’m not sure if it is relevant, but I’m directly calling the `ssba_buttons()`
   function, not using `do_shortcode()`.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] Password strength weirdness and issues on registering](https://wordpress.org/support/topic/password-strength-weirdness-and-issues-on-registering/)
 *  Thread Starter [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/password-strength-weirdness-and-issues-on-registering/#post-6469820)
 * Thank you, will do.
 * For reference, appears to be [this issue](https://wedevs.com/support/topic/bug-in-fronend-user-password-field/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] Password strength weirdness and issues on registering](https://wordpress.org/support/topic/password-strength-weirdness-and-issues-on-registering/)
 *  Thread Starter [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/password-strength-weirdness-and-issues-on-registering/#post-6469784)
 * Sorry, yes it is on the Pro version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration] Password strength weirdness and issues on registering](https://wordpress.org/support/topic/password-strength-weirdness-and-issues-on-registering/)
 *  Thread Starter [Oli Ward](https://wordpress.org/support/users/oliwardgmailcom/)
 * (@oliwardgmailcom)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/password-strength-weirdness-and-issues-on-registering/#post-6469592)
 * See screenshot here: [http://imgur.com/j74v8yX](http://imgur.com/j74v8yX)

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