電子メールヘッダーの背景イメージを設定しようとしています。 woocommerce電子メールヘッダーの背景イメージを設定する
メールテンプレートファイルemail-header.php
を変更しようとしています。 はまた、私はemail-header.php
と同じディレクトリにIMGを置く - >theme->my-theme->woocommerce->email
そして、ここに私のコードです:
<table border="0" cellpadding="0" cellspacing="0" width="600" id="template_container">
<tr>
<td align="center" valign="top" >
//add the custom img
<img src="email_header-graphic.jpg" alt="" style="width:auto; height:auto;">
<!-- Header -->
<table border="0" cellpadding="0" cellspacing="0" width="600" id="template_header">
<tr>
<td id="header_wrapper">
<h1><?php echo $email_heading; ?></h1>
</td>
</tr>
</table>
はしかし、それは動作しません。テンプレートヘッダーをイメージに変更する方法は?
ありがとうございます。
新:
#template_header {
border-radius: 3px 3px 0 0 !important;
background-image: url("<?php echo get_template_directory_uri() . "/woocommerce/email"; ?>/email_header-graphic.jpg");
border-bottom: 0;
font-weight: bold;
line-height: 100%;
vertical-align: middle;
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}
そして点検表示異なるリンク:
email-styles.php
を変更しようとすると
https://ci6.googleusercontent.com/proxy/....../http://myweb.com.hk/wp-content/themes/mytheme/woocommerce/email/email_header-graphic.jpg
をそして、私は背景画像を追加しようとしていますCSSで。また、私はヘッダーの色を表示します。今、このです:
https://www.sellwithwp.com/customizing-woocommerce-order-emails/ – vaso123
あなたがそれがうまくいかないと言うと、より具体的になりますか? – MirzaP
私はこのように正しいことが分かりません。私は 'email-style.php'を修正しようとしています。後で新しい状況を更新してください。 – Capslock10