wenkbt
Forum Replies Created
-
Hi,
I have fixed it, thanks a lot for your explanation and help!Hi,
Thanks. I found someone used google font plugin to set the .wpcp-all-captions font size and now I solved it with my shortcode class .wpcp-all-captions.By the way, why my first slide image size is different from the others since I have set my image size the same custom size.
Best regards
WenForum: Fixing WordPress
In reply to: fail to send user notification email when creating new userHi,
I have run a test code to try wp_mail function but it didn’t succeed:if($_POST[‘bt1’] )
{
echo “<p>email sent!<p>”;
$to = ‘[email protected]’;
$subject = ‘The subject’;
$body = ‘The email body content’;
$headers = array(‘Content-Type: text/html; charset=UTF-8’);wp_mail( $to, $subject, $body, $headers );
} else
{
echo “<p>email not sent!<p>”;
}echo ‘<form id=”fr1″ method=”post” action=””>’;
echo ‘<input type=”submit” id=”bt1″ name=”bt1″ value=”send email” />’;
echo ‘</form>’;`Since we run our website on a host provider, should I contact them to enable wp_mail function or is that possible I did it by logging on that host?