Title: hh3's Replies | WordPress.org

---

# hh3

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search Everything] Fatal error: Cannot use object of type WP_Error as array](https://wordpress.org/support/topic/fatal-error-cannot-use-object-of-type-wp_error-as-array-19/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-cannot-use-object-of-type-wp_error-as-array-19/#post-10394023)
 * [@andronidko](https://wordpress.org/support/users/andronidko/)
    Thank you! Your
   fix did the trick for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Search Everything] Fatal error when creating new post](https://wordpress.org/support/topic/fatal-error-when-creating-new-post/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-when-creating-new-post/#post-10394016)
 * Please see the other post earlier. The final answer fixed the problem. Unfortunately,
   you have to change the code manually.
 * [https://wordpress.org/support/topic/fatal-error-cannot-use-object-of-type-wp_error-as-array-19/](https://wordpress.org/support/topic/fatal-error-cannot-use-object-of-type-wp_error-as-array-19/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Social Share] Pinterest button](https://wordpress.org/support/topic/pinterest-button-14/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/pinterest-button-14/#post-8390188)
 * I just posted this in another thread, then I see yours.
 * Try putting this in your theme’s style.css
 * `#s-share-buttons .pinit-btn-div span { visibility: hidden; }`
 * Hope that works for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Social Share] Pinster show two buttons](https://wordpress.org/support/topic/pinster-show-two-buttons/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/pinster-show-two-buttons/#post-8390180)
 * Try putting this in your theme’s style.css
 *     ```
       #s-share-buttons .pinit-btn-div span { visibility: hidden; }
       ```
   
 * Hope that works for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JQuery Vertical Mega Menu Widget] PHP Strict warnings](https://wordpress.org/support/topic/php-strict-warnings-2/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/php-strict-warnings-2/#post-6601906)
 * need to fix “header” function in “dcwp_jquery_vertical_mega_menu.php” file. Unfortunately,
   since this plugin doesn’t seem to be maintained anymore, you’ll have to make 
   the fix in your plugin.
 * It’s not the most elegant way to fix, but this gets the job done (replace your
   header function with this):
 *     ```
       function header(){
               $temp_plugin_dir = WP_PLUGIN_URL . '/jquery-vertical-mega-menu';
               echo "\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$temp_plugin_dir."/css/dcverticalmegamenu.css\" media=\"screen\" />";
   
               // Scripts
                   wp_enqueue_script( 'jquery' );
                   wp_enqueue_script( 'jqueryhoverintent', $temp_plugin_dir . '/js/jquery.hoverIntent.minified.js', array('jquery') );
                   wp_enqueue_script( 'dcjqverticalmegamenu', $temp_plugin_dir  . '/js/jquery.dcverticalmegamenu.1.3.js', array('jquery') );
   
           }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JQuery Vertical Mega Menu Widget] PHP Strict warnings](https://wordpress.org/support/topic/php-strict-warnings-2/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/php-strict-warnings-2/#post-6601905)
 * To fix the problem, need to modify the ‘header’ function in ‘dcwp_jquery_vertical_mega_menu.
   php’ file.
 * This isn’t the most elegant fix, but it gets the job done:
 *     ```
       function header(){
               $temp_plugin_dir = WP_PLUGIN_URL . '/jquery-vertical-mega-menu';
               echo "\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$temp_plugin_dir."/css/dcverticalmegamenu.css\" media=\"screen\" />";
   
               // Scripts
                   wp_enqueue_script( 'jquery' );
                   wp_enqueue_script( 'jqueryhoverintent', $temp_plugin_dir . '/js/jquery.hoverIntent.minified.js', array('jquery') );
                   wp_enqueue_script( 'dcjqverticalmegamenu', $temp_plugin_dir  . '/js/jquery.dcverticalmegamenu.1.3.js', array('jquery') );
   
           }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JQuery Vertical Mega Menu Widget] PHP Strict warnings](https://wordpress.org/support/topic/php-strict-warnings-2/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/php-strict-warnings-2/#post-6601904)
 * To avoid the warning, need to fix the ‘header’ function in ‘dcwp_jquery_vertical_mega_menu.
   php’
 * The problem stem from the author trying to call an internal function using static
   call, I am not sure this is the best fix, but it does fix the problem by simply
   avoiding the static call and get the plugin directory into a temp variable.
 * Unfortunately, it seems this plugin is no longer supported, so I am not sure 
   if it’ll ever be fixed…
 *     ```
       function header(){
               $temp_plugin_dir = WP_PLUGIN_URL . '/jquery-vertical-mega-menu';
               echo "\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".$temp_plugin_dir."/css/dcverticalmegamenu.css\" media=\"screen\" />";
   
               // Scripts
                   wp_enqueue_script( 'jquery' );
                   wp_enqueue_script( 'jqueryhoverintent', $temp_plugin_dir . '/js/jquery.hoverIntent.minified.js', array('jquery') );
                   wp_enqueue_script( 'dcjqverticalmegamenu', $temp_plugin_dir  . '/js/jquery.dcverticalmegamenu.1.3.js', array('jquery') );
   
           }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments Notifier] Not sure when it stopped working, but it doesn't anymore](https://wordpress.org/support/topic/not-sure-when-it-stopped-working-but-it-doesnt-anymore/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/not-sure-when-it-stopped-working-but-it-doesnt-anymore/#post-6602944)
 * By the way, thanks for the tip about putting in <div id=”commentform”> so facebook-
   comments-notifier will insert the facebook comment form. I couldn’t figure out
   how to get away from using comment_form to avoid spammers, now your solution 
   works great.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments Notifier] Not sure when it stopped working, but it doesn't anymore](https://wordpress.org/support/topic/not-sure-when-it-stopped-working-but-it-doesnt-anymore/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/not-sure-when-it-stopped-working-but-it-doesnt-anymore/#post-6602943)
 * Without SMTP send it could be finicky… did you try using SMTP send? Notes from
   the FAQ:
 * > I have installed the plugin but am not receiving emails
   > This sometimes exists on a WordPress website running on IIS. The Facebook Comments
   > Notifier plugin uses the wp_mail() function to send email and IIS is not always
   > configured to handle mail this way. A work around to this mail issue is to 
   > use a plugin to authenticate your mail via SMTP protocol. For the SMTP authentication,
   > we have found this plugin to work: WP Mail SMTP by Callum Macdonald ([http://wordpress.org/extend/plugins/wp-mail-smtp/](http://wordpress.org/extend/plugins/wp-mail-smtp/)).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Social Share] Email share title and subject doesn't always work with Chinese character](https://wordpress.org/support/topic/email-share-title-and-subject-doesnt-always-work-with-chinese-character/)
 *  Thread Starter [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/email-share-title-and-subject-doesnt-always-work-with-chinese-character/#post-5566806)
 * I look deeper into this and have found it’s not necessarily the plugin’s problem,
   but it could be e-mail program’s problem in encoding the URL.
    To get around 
   the issue, it would be great if the plugin can have the option to use post-id
   instead of permalink for e-mail sharing. In the mean time, I am simply going 
   to modify the code to give me post-id URL instead.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lightbox Plus Colorbox] only 1 of multiple galleries is accessing lightbox, want all to work](https://wordpress.org/support/topic/only-1-of-multiple-galleries-is-accessing-lightbox-want-all-to-work/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/only-1-of-multiple-galleries-is-accessing-lightbox-want-all-to-work/#post-5819987)
 * Never mind…, I found a tutorial on how to link to image file in a gallery. It
   doesn’t solve my problem, but answered my question.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lightbox Plus Colorbox] only 1 of multiple galleries is accessing lightbox, want all to work](https://wordpress.org/support/topic/only-1-of-multiple-galleries-is-accessing-lightbox-want-all-to-work/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/only-1-of-multiple-galleries-is-accessing-lightbox-want-all-to-work/#post-5819986)
 * hi hunia,
    I think I have similar problem while trying to Lightbox-Plus on WP
   E-Commerce product page which seem to utilize 2 galleries. The FAQ mentioned 
   that
 * >  Link thumbnails to: Image File or use [gallery link=”file” for the gallery
   > options
 * But I can’t figure out how do I do this… I have WP 4.3.1 and Lightbox-Plus 2.7.2.
 * Thanks for any hints you can give.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics Dashboard] Google's new oauth?](https://wordpress.org/support/topic/googles-new-oauth/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/googles-new-oauth/#post-6123546)
 * Same problem here. Google did say they have changed to OAuth 2.0. OAuth 1.0 was
   deprecated and no longer supported as of April 20, 2015.
 * [https://developers.google.com/identity/protocols/OAuth_ref](https://developers.google.com/identity/protocols/OAuth_ref)
 * I’ll try to submit the bug request on GitHub.
 * UPDATE: this was already reported at GitHub earlier today, but no response yet.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Social Login] not working facebook login](https://wordpress.org/support/topic/not-working-facebook-login/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/not-working-facebook-login/#post-5255387)
 * [@dub](https://wordpress.org/support/users/dub/),
    I don’t read Spanish, but 
   most likely the problem is in your setup at Facebook Apps.
 * Make sure you have the Domain and Site URL (Need to add “Website” as a “Platform”)
   setup correctly.
 * Hope that helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook Comments by Fat Panda] Administrator notifications for new comments](https://wordpress.org/support/topic/administrator-notifications-for-new-comments/)
 *  [hh3](https://wordpress.org/support/users/hh3/)
 * (@hh3)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/administrator-notifications-for-new-comments/#post-3965824)
 * Hi cdiazg,
    I only tested on my ‘test’ site, not live site, and I haven’t had
   the chance to test it some more… Here are the changes:
 * All important changes are in fb-comments.js
    1. Change all reference of “#commentform” to “#FatPandaFacebookComments” (without
       the “)
    2. block comment out the area between “//comment form” and “//add listener” with/*
       and */
 * Like this:
 *     ```
       /*
          // comment form
        ....
       */
         // add listener
       ```
   
 * That’s it!
 * Optional – The “Facebook Comments Notifier” is named “Facebook Comments” in the
   plugin pages, so it’s a bit confusing with Fatpanda’s plugin name. You may want
   to customize the name so it’s not so confusing. This is a cosmetic change that’s
   not required.
    1. Change the folder name to fb-comments-notifier
    2. Change the file: facebook-comments-notifier.php to fb-comments-notifier.php
    3. In fb-comments-notifier.php, change
 *  - “Plugin Name:” line to “Plugin Name: FB Comments Notifier”
    - Change “add_options_page” line to
    -     ```
          add_options_page('FB Comment Notifier Options', 'FB Comments Notifier', 'administrator', 'fcn', 'fcn_admin_options_page');
          ```
      
 * If you do make the optional change, it’s probably better to repackage the file
   and upload it as a zip file. Hope it’s not too confusing.

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

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