arena
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] get addresses from custom post typerequires to dev a specific add on
that’s true there is not ‘opt-in’ for comment subscribers
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] What happened to Mailpress.org?working on it !
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Doesn't Create Mail per Post except for AdminHi Audrey
and are you using twentyeleven as your wordpress theme ?
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Doesn't Create Mail per Post except for Adminwhat mailpress theme are you using ?
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Not saving user custom fields updatesdone !
apparently you have activated a bunch of mailpress add-ons without reading their descriptions …
see add-on Tracking_rewrite_url
deactivating it will not solve the issue for old mails
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Creating Newsletters with Dynamic Contentcurrently, the plugin can deliver (using add-on newsletter_categories) a newsletter foreach specific category so subscriber A would have to subscribe to 3 different newsletters.
What you want is the ability to allow you subscribers to subscribe to 7 different newsletters :
A
B
C
AB
BC
AC
ABCEach newsletter could be subscribed on a different period (post, day, week, month)
Each newsletter will have the same theme
That could be done but requires good skills in php development (mailpress/mp-content/add-ons)
and good knowledge of xml (mailpress/mp-content/advanced/newsletters/post/categories)Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Not saving user custom fields updateswill be fixed in trunk soon !
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Related Posts ThumbnailsRelated Posts Thumbnails plugin is using the filter ‘the_content’
add_filter( 'the_content', array( $this, 'auto_show' ) );if you want to remove this from your mails, you have to discard this filter in your mailpress theme functions.php file.
something like :global $related_posts_thumbnails; remove_filter( 'the_content', array( $related_posts_thumbnails, 'auto_show' ) );Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Not Sending All Blog Postswho suggested 0 for wp-cron
if you have a lot of recipients consider using Batch_send add-on
and readhttp://blog.mailpress.org/2011/10/28/disabling-wp-cron-scheduled-by-wordpress/
http://blog.mailpress.org/2011/10/28/mailpress-batches-submit-batch-with-other-option/Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] smtp, php and sendmail all failmake sure your smtp settings are the same in WP Mail SMTP and MailPress
once done, check all checkboxes in Settings > MailPress > Test and try to send a test mail (deactivate WP Mail SMTP to avoid any plugin conflict)
the 30 failed recipients are retryed at 2012-06-14 04:19:05
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] roles and capabilities?
solved