WOO商务下单文本中的css更改

时间:2019-01-06 作者:Richa Sharma

add_filter( \'woocommerce_order_button_text\', \'woo_custom_order_button_text\' ); 

function woo_custom_order_button_text() {
    return __( \'Your new button text here\', \'woocommerce\' ); 
}
以上是我们如何更改woocommerce“下订单”文本的示例,但如果我们想更改CSS,又该如何定制整个按钮以及我们自己的按钮类和CSS。

2 个回复
最合适的回答,由SO网友:The WP Intermediate 整理而成

我会尽力回答你的问题。既然您知道如何更改文本,那么让我把它作为CSS。

浏览器中的视图-浏览器正在呈现如下按钮→

<button type="submit" class="button alt" name="woocommerce_checkout_place_order" id="place_order" value="Confirm order" data-value="Confirm order">Confirm order</button>

enter image description here

现在,在您的子主题/主题中创建一个名为“woocommerce”的文件夹,并创建一个名为checkout的文件夹,然后在该文件夹中放置付款。php发件人woo commerce template. (查找最新模板)

并将那里的button类更改为所需的类。你们都做完了。

SO网友:Md. Ehsanul Haque Kanan

您必须将PHP代码放在functions.php 子主题的文件。你必须把它们放在“?>“。另一方面,在style.css 子主题的文件。

相关推荐

为什么我的主题的css在另一个网站上不起作用

我在Neve theme的基础上开发我的on theme。首先,我对脚本有问题,因为它不起作用,但我不得不从页脚更改它们的位置。php到标题。php的一切都很好。新的一些脚本无法工作,因为css根本没有加载。我尝试了5种不同的方法,但都失败了。标题中的。php我只是给他们<style> </style></我在函数中使用了寄存器样式。php,标题。php和页脚。php function my_theme_enqueue_styles() { &#x