我想在结帐页面上将$order->get_total();
添加到我的woocommerce地方订单按钮。所以我只想让它以字符串形式显示总数。
这就是我在 functions.php 中的内容,它返回一个空白。
add_filter( 'woocommerce_order_button_text', 'woo_custom_order_button_text' );
function woo_custom_order_button_text() {
return __( $order->get_total(), 'woocommerce' );
}
我也试过这个:
function woo_custom_order_button_text() {
return __( $order_total, 'woocommerce' );
}
两个片段都返回空白,没有。
如何做到这一点? 感谢。
答案 0 :(得分:0)
您必须使用
import { NgModule } from '@angular/ import { HighlightDirective } from './bugtracker/bugtracker.directive'; import { FormValidation } from './formvalidation/formvalidation.module'; import { Page1 } from './page1/page1.component'; import { Page2 } from './page2/page2.component'; const appRoutes: Routes = [ { path: '', component: Page1 }, { path: 'home', component: Page1 }, { path: 'page2', component: Page2 }, ]; @NgModule({ imports: [RouterModule.forRoot(appRoutes), FormValidation], declarations: [HighlightDirective, Page1, Page2], bootstrap: [], exports: [FormValidation] }) export class AppModule {}
的别名WC()
访问WooCommerce相关数据,并访问购物车信息 必须使用global $woocommerce
。
此代码应该适合您。
WC()->cart
希望这有帮助!