Title: polev's Replies | WordPress.org

---

# polev

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Log Viewer] BUG: deprecated constructor call for Debug Bar Panel](https://wordpress.org/support/topic/bug-deprecated-constructor-call-for-debug-bar-panel/)
 *  [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/bug-deprecated-constructor-call-for-debug-bar-panel/#post-9240696)
 * I came to the same conclusion. The line currently is:
    `parent::Debug_Bar_Panel('
   Log Viewer' );` which is a deprecated constructor. Instead, it should be: `parent::
   __construct( 'Log Viewer' );`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet - Newsletters, Email Marketing, and Automation] Confusing Autosave](https://wordpress.org/support/topic/confusing-autosave/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/confusing-autosave/#post-8856309)
 * By the way, thanks for the great work 🙂
    -  This reply was modified 9 years, 3 months ago by [polev](https://wordpress.org/support/users/polev/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet - Newsletters, Email Marketing, and Automation] MailPoet Emails Subject modified automatically](https://wordpress.org/support/topic/mailpoet-emails-subject-modified-automatically/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/mailpoet-emails-subject-modified-automatically/#post-8856230)
 * I confirm the LastPass incompatibility. “bolero20” is a login name for the website.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet - Newsletters, Email Marketing, and Automation] MailPoet Emails Subject modified automatically](https://wordpress.org/support/topic/mailpoet-emails-subject-modified-automatically/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/mailpoet-emails-subject-modified-automatically/#post-8856176)
 * It might be an incompatibility with LastPass: Free Password Manager 4.1.41 extension
   in Google Chrome Version 56.0.2924.87 (64-bit)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PO/MO Editor] Translations are lost on plugin l10n update.](https://wordpress.org/support/topic/translations-are-lost-on-plugin-l10n-update/)
 *  [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/translations-are-lost-on-plugin-l10n-update/#post-8385917)
 * Great plugin, nicely written.
    I only need to change a few entries in my theme’s
   texts, because I think they are confusing for my type of users. I am also concerned
   about maintenance: how can my ‘patches’ survive updates of the original theme
   text files? I was wondering if this plugin could keep the changes in a separate
   file and then merge them when WP is started, overwriting existing keys in the
   original file with patches. Thanks for your great work.
    -  This reply was modified 9 years, 7 months ago by [polev](https://wordpress.org/support/users/polev/).
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WP PHP Console] A simple way to show PHP variables and stack trace](https://wordpress.org/support/topic/a-simple-way-to-show-php-variables-and-stack-trace/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/a-simple-way-to-show-php-variables-and-stack-trace/#post-7921418)
 * Note that since 1.3.0 released feb 5 2015, we can write `PC::debug($variable)`
   or even `PC::variable($variable)` instead of `trigger_error(print_r($variable,
   true))`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP PHP Console] How to write php code that shows debug info on chrome console?](https://wordpress.org/support/topic/using-4/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/using-4/#post-5685310)
 * Part of this support question is obsolete as this plugin includes the registration
   option since version 1.3.0
 * See [https://github.com/nekojira/wp-php-console#register-pc-class](https://github.com/nekojira/wp-php-console#register-pc-class)
 * After you installed the plugin and enabled _Register PC Class_
    you can write
   debug statements like `PC::debug( $my_var )` to print `$my_var` to Chrome’s Javascript
   Console
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP PHP Console] How to write php code that shows debug info on chrome console?](https://wordpress.org/support/topic/using-4/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/using-4/#post-5685067)
 * Other example code:
 *     ```
       // PHP Console autoload
       require_once dirname( __FILE__ ) . '/wp-php-console/vendor/autoload.php';
   
       // make PC object available
       PhpConsole\Helper::register();
   
       // example use of PC:debug()
       PC::debug($_SERVER);
   
       // example use of PC:db()
       add_action('wp', function ($wp) {
         PC::db($wp, 'wp');
       });
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP PHP Console] How to write php code that shows debug info on chrome console?](https://wordpress.org/support/topic/using-4/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/using-4/#post-5684962)
 * Example code:
 *     ```
       add_action('loop_start', function($query) {
       	trigger_error(print_r($query, true));
       });
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP PHP Console] Documentation](https://wordpress.org/support/topic/documentation-76/)
 *  Thread Starter [polev](https://wordpress.org/support/users/polev/)
 * (@polev)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/documentation-76/#post-5684957)
 * The link to [https://github.com/nekojira/wp-php-console](https://github.com/nekojira/wp-php-console)
   
   is not visible when navigating documentation through [https://wordpress.org/plugins/wp-php-console/](https://wordpress.org/plugins/wp-php-console/)
 * It is visible as [Plugin Homepage](https://github.com/nekojira/wp-php-console/)
   when visiting the same information through the WordPress Add New Plugin admin
   pages of a wordpress site though.

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