Hey...
Morning. When I create a newsletter, and apply a template - then preview - it still shows up in the Wordpress theme for the site - not the template I selected. It doesn't matter which template I choose. Help?
Thanks!
Hey...
Morning. When I create a newsletter, and apply a template - then preview - it still shows up in the Wordpress theme for the site - not the template I selected. It doesn't matter which template I choose. Help?
Thanks!
Hello,
I am trying to understand the template functionnality.
Did you resolve this problem ? I thought maybe we can see the newsletter with the template only when sending it ?
Thnaks for helping.
I am back just to say to those who may be interested that the theme I chose was sent by mail, although it didn't appear when previewing it, nor when clicking the 'show online' link in the newsletter.
When you click the "Preview" / "View newsletter" button you see the online version of newsletter where the active WP theme is applied, and not the newsletter theme you choose. The newsletter theme (that you can chose in Theme box in newsletter edit screen, and of which you preview the general layout using "View" button) is applied to newsletters only when sending them.
I have a similar Problem. When i update the Preferences, i got these warnings:
Warning: glob() expects parameter 2 to be long, string given in /mnt/web1/13/79/51509279/htdocs/wordpress/wp-content/plugins/alo-easymail/alo-easymail_functions.php on line 2895
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /mnt/web1/13/79/51509279/htdocs/wordpress/wp-content/plugins/alo-easymail/alo-easymail_options.php on line 129
Warning: array_key_exists() [function.array-key-exists]: The second argument should be either an array or an object in /mnt/web1/13/79/51509279/htdocs/wordpress/wp-content/plugins/alo-easymail/alo-easymail_options.php on line 130
When i create a Newsletter, the Themes Section shows this Warning, instead (i suggest...) a List of Templates:
Warning: glob() expects parameter 2 to be long, string given in /mnt/web1/13/79/51509279/htdocs/wordpress/wp-content/plugins/alo-easymail/alo-easymail_functions.php on line 2895
I use the newest Wordpress-Release, and a custom Child-Template based on the twentyelen Template...
Any Ideas?
Hi. On php manual I can read:
Note: The GLOB_BRACE flag is not available on some non GNU systems, like Solaris.
Maybe it could be the cause of your problem.
To fix it I found this tip. I'd like that you check this and share your feedback, so I can include it in next plugin release.
Open alo-easymail_functions.php, search this line (2895):
$themes = glob( $dir. "*.{htm,html}", GLOB_BRACE );
and replace with:
$themes = array_merge( glob( $dir. "*.htm"), glob( $dir. "*.html") );
Let us know.
Yesssss, this works great. :-)
Open alo-easymail_functions.php, search this line (2895):
$themes = glob( $dir. "*.{htm,html}", GLOB_BRACE );
and replace with:
$themes = array_merge( glob( $dir. "*.htm"), glob( $dir. "*.html") );
I don't know if GLOB_BRACE flag is the cause of my Problem, but the solution fixed my problem. Now i love your plugin :-)
Thank you for the quick reply - Carsten
You must log in to post.