Title: Manuel's Replies | WordPress.org

---

# Manuel

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] SMTP with Amazon SES](https://wordpress.org/support/topic/smtp-with-amazon-ses/)
 *  [Manuel](https://wordpress.org/support/users/superfreund/)
 * (@superfreund)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/smtp-with-amazon-ses/#post-3130997)
 * Even though the Amazon SES SMTP-settings-page says to use TLS, the only settings
   I got WYSIJA work with are those:
 * SMTP Hostname: email-smtp.us-east-1.amazonaws.com
    SMTP Port: 465 Secure Connection:
   SSL Authentication: Yes
 * Let me know if that works for you. I’ve tried every possible combination. Test
   environment on Hostgator-server, if that matters.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp-load error from wp-cron output in CPanel](https://wordpress.org/support/topic/wp-load-error-from-wp-cron-output-in-cpanel/)
 *  [Manuel](https://wordpress.org/support/users/superfreund/)
 * (@superfreund)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/wp-load-error-from-wp-cron-output-in-cpanel/#post-2715932)
 * It did – Thanks Jon!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bootstrap Admin] Icon replacement](https://wordpress.org/support/topic/icon-replacement/)
 *  Thread Starter [Manuel](https://wordpress.org/support/users/superfreund/)
 * (@superfreund)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/icon-replacement/#post-3175433)
 * Thank you so much for fixing the collapsed menu icons in 1.0.3. I tried to get
   it done myself yesterday and it was driving me nuts.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPress Newsletters] [Plugin: SendPress] Language file](https://wordpress.org/support/topic/plugin-sendpress-language-file/)
 *  Thread Starter [Manuel](https://wordpress.org/support/users/superfreund/)
 * (@superfreund)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-sendpress-language-file/#post-3017095)
 * Basically this tells you everything you need to know:
    [http://codex.wordpress.org/I18n_for_WordPress_Developers](http://codex.wordpress.org/I18n_for_WordPress_Developers)
 * I went ahead and started a .pot-file containing text from the file sendpress.
   php. I couldn’t get it to work until I changed line 88 from:
    `load_plugin_textdomain('
   sendpress', false, SENDPRESS_PATH . 'languages/' );` to `load_plugin_textdomain('
   sendpress', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );`
 * And here’s an example of translating text that contains a string:
    `<b>Warning!
   </b> Before sending any emails please setup your <a href="'.admin_url("admin.
   php?page=sp-templates&view=information").'">information</a>.` needs to become`
   printf(__('<b>Warning!</b> Before sending any emails please setup your <a href
   ="%s">information</a>.', 'sendpress'), admin_url("admin.php?page=sp-templates&
   view=information"));`
 * If your interested in teaming up on the translation issue let me know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google Analytics Dashboard] [Plugin: Google Analytics Dashboard] Post analytic results spill into custom column](https://wordpress.org/support/topic/plugin-google-analytics-dashboard-post-analytic-results-spill-into-custom-columsn/)
 *  [Manuel](https://wordpress.org/support/users/superfreund/)
 * (@superfreund)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-google-analytics-dashboard-post-analytic-results-spill-into-custom-columsn/#post-2920206)
 * Just discovered the same problem. Changing line 144 in the “posts_pages_custom_column”-
   function (file “gad-admin-pages-posts.php”) seems to do the trick:
 *     ```
       function posts_pages_custom_column($column_name, $post_id)
         {
       //    if(($value = $this->security_check()) !== true )
           if((($value = $this->security_check()) !== true ) && ($column_name == 'analytics'))
           {
             echo $value;
           }
           else
           {
             if( $column_name == 'analytics' )
             {
               echo '<div id="gad_ppp_' . $post_id . '" class="gad_ppp_loading"><p class="widget-loading hide-if-no-js">Loading…</p><p class="describe hide-if-js">This widget requires JavaScript.</p></div>';
             }
           }
         }
       ```
   
 * Now if you want the analytics-graph to appear in your custom columns you’ll have
   to add it yourself:
 *     ```
       function project_edit_columns( $columns ) {
   
       	// Add the extra column for product categories instead of rebuilding the whole array
       	$columns["client"] = "For Client";
       	$columns["analytics"] = __("Analytics");
   
       	return $columns;
       }
       ```
   

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