有没有办法在magento的paypal支付方式页面上更新css?
Posted
技术标签:
【中文标题】有没有办法在magento的paypal支付方式页面上更新css?【英文标题】:Is there any way to update css on paypal payment method page in magento? 【发布时间】:2018-03-10 04:32:39 【问题描述】:我想更新这个页面,但它的 css 是从 paypal 网站加载的。 common.css 正在从 paypal 网站加载,仍然没有任何变化反映
【问题讨论】:
【参考方案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>
希望对您有所帮助! :)
【讨论】:
以上是关于有没有办法在magento的paypal支付方式页面上更新css?的主要内容,如果未能解决你的问题,请参考以下文章
Magento:支付完成后,paypal 标准支付未重定向到 Magento 成功页面
Paypal 没有显示在我的 magento 1.9.2.3 商店中