【问题标题】:Is there any way to update css on paypal payment method page in magento?有没有办法在magento的paypal支付方式页面上更新css?
【发布时间】:2018-03-10 04:32:39
【问题描述】:

我想更新这个页面,但它的 css 是从 paypal 网站加载的。 common.css 正在从 paypal 网站加载,仍然没有任何变化反映

【问题讨论】:

    标签: magento paypal magento2 payment-method


    【解决方案1】:

    如果您尝试使用 jQuery 调整 CSS 组件,就像在 M1 中所做的那样 - 这将不再适用于 M2,因为 M2 使用 RequireJS。

    相反,您应该在所需的 PHTML 文件中添加如下内容:

    <script>
        require([
            "jquery"
            ], function ($) {
                    // Perform desired action(s) on the selector(s) you're interested in
                    // For example:
                    $("#UiElementOfInterest").hide();
                });
            });
    </script>
    

    希望对您有所帮助! :)

    【讨论】:

      猜你喜欢
      • 2020-05-11
      • 1970-01-01
      • 2018-08-17
      • 2013-03-21
      • 1970-01-01
      • 2013-05-10
      • 1970-01-01
      • 2015-01-07
      • 2014-07-29
      相关资源
      最近更新 更多