My apologies, the hack works. Maybe I needed to refresh my cache?
Anyhow added:
<?php if (empty($post->post_content)) {$post->post_content = “Short summary of the resource. Edit this as needed.”;}?>
Above this existing line in edit-form-advanced.php
<?php the_editor($post->post_content); ?>
That worked perfectly for me too, until I upgraded to WordPress 2.1.
Any ideas on how to incorporate this into the new edit-form-advanced?
Line 146 shows:
<fieldset id=”<?php echo user_can_richedit() ? ‘postdivrich’ : ‘postdiv’; ?>”>
<legend><?php _e(‘Post’) ?></legend>
<?php the_editor($post->post_content); ?>
</fieldset>
I am getting this error message when users try to subscribe via the form which I’ve placed in my sidebar:
Warning: mail(): “sendmail_from” not set in php.ini or custom “From:” header missing in C:\Program Files\Apache Group\Apache2\htdocs\infolit\maillist\index.php on line 217
Thanks for subscribing.
You will receive an email shortly to confirm your subscription.
Do I need to change a setting at line 217 in index.php?
Thanks!