Manuel
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] SMTP with Amazon SESEven 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: YesLet me know if that works for you. I’ve tried every possible combination. Test environment on Hostgator-server, if that matters.
Forum: Fixing WordPress
In reply to: wp-load error from wp-cron output in CPanelIt did – Thanks Jon!
Forum: Plugins
In reply to: [Bootstrap Admin] Icon replacementThank 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
In reply to: [SendPress Newsletters] [Plugin: SendPress] Language fileBasically this tells you everything you need to know:
http://codex.ww.wp.xz.cn/I18n_for_WordPress_DevelopersI 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.
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; }