我正在使用WPML插件,除了在ajax中,它在我的主题中效果很好。 这是我的代码:
btn_Save = (Button) findViewById(R.id.yourbuttonid);
我的意思是下面的代码没有用。
ob_start();
wc_add_notice( __( 'Sorry, the total meals exceeds the limit.', 'woocommerce' ), "error" );
wc_get_template( 'content-subcription-plan.php' );
$woocommerce_order_review = ob_get_clean();
$data = array('fragments' => $woocommerce_order_review);
wp_send_json( $data );
die();
注意:我在没有ajax的情况下尝试上面的代码并且效果很好。
感谢您的帮助!