freeformsteph
Forum Replies Created
-
Forum: Plugins
In reply to: [Menu Social Icons] Icons Missing on All SitesHappy to help, cheers.
Forum: Plugins
In reply to: [Menu Social Icons] Facebook icon won’t showThe extension is way out of date and pulling an old version of Font Awesome, add the following to your theme’s functions.php file to resolve the issue:
add_filter( 'storm_social_icons_use_latest', '__return_true' );Forum: Plugins
In reply to: [Menu Social Icons] Icons Missing on All SitesThe extension is way out of date and pulling an old version of Font Awesome, add the following to your theme’s functions.php file to resolve the issue:
add_filter( 'storm_social_icons_use_latest', '__return_true' );I was in the same boat – I found I was able to use the system defaults by simply not trying to set the ‘from’ address and other header information.
$recipient = '[email protected]'; $subject = 'my subject'; $message = 'my message'; wp_mail( $recipient, $subject, $message );That being said, if your SMTP provider allows altering the ‘From’ information (for example) then it would be nice to know how to customize this by loading the defaults and then altering, but I haven’t been able to find out how to load the defaults.