编辑新闻订阅字段

时间:2016-10-19 17:30:44

标签: html

我在我的网站kingtutnews.com上为我的粉丝创建了一个简报,并使用MailChimp,我现在面临的问题是,我无法获得这个简单的电子邮件提取标签(kingtutnews.com/emaillist.html)在我的主页上运行而不影响设计,我现在已经玩了近一天,以便整合这两个代码,但我不能得到它起作用了,我对这一切都很陌生,希望你们能指出我正确的方向。

有效的代码

    <div id="mc_embed_signup">
    <form action="//twitter.us14.list-manage.com/subscribe/post?u=4781bcd1f52c31bf7dc7618f7&amp;id=5b8147dc49" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">

    <div class="mc-field-group">
        <label for="mce-EMAIL">Email Address </label>
        <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
    </div>
        <div id="mce-responses" class="clear">
    <div class="response" id="mce-error-response" style="display:none">                </div>
    <div class="response" id="mce-success-response" style="display:none">        </div>
</div>    <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
        <div style="position: absolute; left: -5000px;" aria-hidden="true">        <input type="text" name="b_4781bcd1f52c31bf7dc7618f7_5b8147dc49" tabindex="-1" value=""></div>
        <div class="clear"><input type="submit" value="Subscribe" name="subscribe"                            id="mc-embedded-subscribe" class="button"></div>
</div>
    </form>
    </div>

以及我在主页上的标签代码

            <div class="row">
                <div class="col-md-4 col-md-offset-4 col-sm6-6 col-sm-offset-3 ">
                    <form class="form-inline" role="form">
                      <div class="form-group">
                        <label class="sr-only" for="exampleInputEmail2">Email address</label>
                        <input type="email" class="form-control transparent" placeholder="Your email here...">
                      </div>
                      <button type="submit" class="btn btn-danger btn-fill">Subscribe</button>
                    </form>

                </div>
            </div>
        </div>

1 个答案:

答案 0 :(得分:1)

你应该知道,所有以mc开头的类,id和名称都被mailchimp用于样式化,解析和插值。我在代码中看不到任何内容,也许你应该在输入元素中保留至少相同的名字?

如果您描述所需的输出是什么以及您现在获得的是什么,这也会有所帮助,以便我能更好地理解。