在主页添加两个简报形式 - magento

时间:2014-02-14 10:53:35

标签: magento

我正在使用两个简报形式,如下面的链接

http://www.astleyclarke.com/uk/jewellery-care

一个是使用鼠标悬停功能,电子邮件订阅者正在弹出 第二个在底部。如果我评论任何一个表格,那么另一个表格正常。 任何1可以帮助我解决这个问题,或者可能已经解决了这个问题。

下面是header.phtml的代码

<script type="text/javascript">

jQuery(document).ready(function() {
    jQuery('a.login-window').click(function() {

        // Getting the variable's value from a link 
        var loginBox = jQuery(this).attr('href');

        //Fade in the Popup and add close button
        jQuery(loginBox).fadeIn(300);

        //Set the center alignment padding + border
        var popMargTop = ($(loginBox).height() + 24) / 2; 
        var popMargLeft = ($(loginBox).width() + 24) / 2; 

        jQuery(loginBox).css({ 
            'margin-top' : -popMargTop,
            'margin-left' : -popMargLeft
        });

        // Add the mask to body
        jQuery('body').append('<div id="mask"></div>');
        jQuery('#mask').fadeIn(300);

        return false;
    });

    // When clicking on the button close or the mask layer the popup closed
    jQuery('a.close, #mask').live('click', function() { 
      jQuery('#mask , .login-popup').fadeOut(300 , function() {
        jQuery('#mask').remove();  
    }); 
    return false;
    });
});
</script>

 <div id="login-box" class="login-popup">
        <a href="#" class="close"><img src="close_pop.png" class="btn_close" title="Close Window" alt="Close" /></a>

      <?php echo $this->getLayout()->createBlock('newsletter/subscribe')->setTemplate('newsletter/subscribe.phtml')->toHtml(); ?>

</div>

for footer.phtml

<?php echo $this->getLayout()->createBlock('newsletter/subscribe')->setTemplate('newsletter/subscribe.phtml')->toHtml(); ?>

0 个答案:

没有答案