Html Shopify和MailChimp-发布1个mc:可重复多个mc:编辑

Html Shopify和MailChimp-发布1个mc:可重复多个mc:编辑,html,html-email,shopify,mailchimp,Html,Html Email,Shopify,Mailchimp,我不确定我的代码有什么问题。所以我有一个大容器,其中有mc:repeatable和嵌套的表,还有td和mc:edit 这是一个2列模板 <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr mc:repeatable="repeat_1"> <td width="50%" class="leftColumnContent" valign="top"> &l

我不确定我的代码有什么问题。所以我有一个大容器,其中有mc:repeatable和嵌套的表,还有td和mc:edit

这是一个2列模板

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr mc:repeatable="repeat_1">
    <td width="50%" class="leftColumnContent" valign="top">
        <table border="0" cellpadding="0" cellspacing="0" width="100%" class="item">
            <tr>
                <td valign="top">
                    <div mc:edit="image_00">
                        <img src="http://chimpified.com/images/templates/260.gif" style="max-width:260px;display:block;margin-bottom:1em;" class="ch_image" />
                    </div>
                    <div mc:edit="content_00">
                        <h4 class="h4">Product Title</h4>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ipsum odio, tristique sed pellentesque eget, cursus quis turpis. Mauris sapien massa, vestibulum ut interdum quis, pulvinar sit amet orci.</p>
                        <p class="ch_meta"><strong class="price ch_price">$0.00</strong> <span class="ch_pipe">|</span> <a href="#" target="_blank" class="ch_link">View product</a></p>
                    </div>
                </td>
            </tr>
        </table>
    </td>
    <td width="50%" class="rightColumnContent" valign="top">
        <table border="0" cellpadding="0" cellspacing="0" width="100%" class="item">
            <tr>
                <td valign="top">
                    <div mc:edit="image_01">
                        <img src="http://chimpified.com/images/templates/260.gif" style="max-width:260px;display:block;margin-bottom:1em;" class="ch_image" />
                    </div>
                    <div mc:edit="content_01">
                        <h4 class="h4">Product Title</h4>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque ipsum odio, tristique sed pellentesque eget, cursus quis turpis. Mauris sapien massa, vestibulum ut interdum quis, pulvinar sit amet orci.</p>
                        <p class="ch_meta"><strong class="price ch_price">$0.00</strong> <span class="ch_pipe">|</span> <a href="#" target="_blank" class="ch_link">View product</a></p>
                    </div>
                </td>
            </tr>
        </table>
    </td>
</tr>
我正在将chimpified插件与shopify一起使用。我选择了4种产品显示在电子邮件中。但当我看设计预览时,我只看到第1栏中充满了产品信息。第二栏什么也没有。表是重复的

我不知道为什么第二栏没有填写任何信息


请帮帮我。谢谢。

首先,没有结束表标签。此外,repeat_1位于表行上,而不是表本身。您可以参考位于的模板,了解如何重复部分。似乎需要重复一个表,而不是一个表行。在本例中,有一个包含两列的表,每列包含一个可重复的表。

您好,谢谢。我注意到我漏掉了收尾台的标签,但那没关系。我实际上是从模板中得到代码的。所以你们是说,可重复的部分只允许放在桌子上?我也试过了。结果仍然是一样的。