如何去掉我的 Weebly 网站上的号召性用语按钮?

How can I get rid of the call to action button on my Weebly site?

我找不到任何方法来删除 Weebly 登录页面布局上的号召性用语按钮。是否可以去掉这个按钮?

您需要执行两个步骤。

  1. 从桌面布局中删除按钮。

    • 在HTML编辑模式下打开布局文件。
    • 删除以下行:

      <div class="button-wrap">{action:button global="false"}</div>
      
  2. 从移动布局中删除按钮。

    • 在页面的Header Code中添加以下脚本:

      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">
      </script>
      <script language='javascript'>
          $(document).ready(function(){
              $('.landing-container').remove();
          });
      </script>
      

您可以在本网站上看到 gluten free products 的实际效果。