guylancaster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: reset email message spoofingI add the filter ‘wp_mail_from’ with a suitable function that returns my preferred email from.
The screen has this link.
Wnen a user clicks on that link, it goes to wordpress forgot password but ignores the filter.
Forum: Plugins
In reply to: add_filter single template not workingSorted
It was a conflict between plugin 3 and 2!
Forum: Plugins
In reply to: add_filter single template not workingForum: Plugins
In reply to: plugin custom post type – apply template filei think add filter….may be something to do with the answer
Forum: Plugins
In reply to: wp_mail headersTested a bit more and…
wp_mail allows you to add filter to render html or set the from, but not both
wp mail with a “render html” declaration in the header and “from email” using a filter does what i want.
Surely wp should allow 2 filters to be active at once? or have i missed something?
- This reply was modified 9 years, 7 months ago by guylancaster.
Forum: Plugins
In reply to: wp_mail headersTested a bit more, From stops any email happening.
Forum: Plugins
In reply to: wp_mail headersfound it all in my spam and junk folders!
Forum: Fixing WordPress
In reply to: No admin!wp-admin usually has 80 files
mine had 79
the missing file was index.phpsorted!
Forum: Hacks
In reply to: loading a file in php /wordpressfopen not working…..
After a lot of gnashing of teeth, worked out that it was my testing with 1 letter postcodes and the live system being tested with 2 letter postcodes, and my lower case conversion being a bit skew-wiff on the second postcode letter.
Thanks anyway.
Forum: Fixing WordPress
In reply to: fopen problemwp_remote_fopen seems to fix it
Forum: Hacks
In reply to: sessions and cookiesThis worked for me
add_action(‘init’, ‘my_setcookieon’);
function my_setcookieon()
{
setcookie(‘pswStatus’, “ON”, time() + 3600, COOKIEPATH, COOKIE_DOMAIN );
}Thanks Mike Little for this