不同产品的 Woocommerce 不同 T&C 页面
Woocommerce different T&C page for different products
是否可以在 woocommerce 结账时为不同的产品添加不同的条款和条件页面?
如果一个订单有一些特定的产品,我需要显示不同的条款和条件页面。
在结帐时,我们会像图片一样显示 T&C 页面 link
管理员无法做到这一点,所以我将覆盖我模板中的插件 payment.php
文件并针对以下部分进行破解
<?php if ( wc_get_page_id( 'terms' ) > 0 && apply_filters( 'woocommerce_checkout_show_terms', true ) ) : ?>
<p class="form-row terms">
//If condition here
<label for="terms" class="checkbox"><?php printf( __( 'I’ve read and accept the <a href="%s" target="_blank">terms & conditions</a>', 'woocommerce' ), esc_url( wc_get_page_permalink( 'terms' ) ) ); ?></label>
<input type="checkbox" class="input-checkbox" name="terms" <?php checked( apply_filters( 'woocommerce_terms_is_checked_default', isset( $_POST['terms'] ) ), true ); ?> id="terms" />
</p>
<?php endif; ?>
functions.php
文件中是否有执行此操作的任何挂钩?
在functions.php
中使用以下代码
add_filter('woocommerce_get_terms_page_permalink', 'replace_permalink');
function replace_permalink($permalink){
// do any change to $permalink here depending on your condition or business case
return $permalink;
}
希望对您有所帮助
是否可以在 woocommerce 结账时为不同的产品添加不同的条款和条件页面? 如果一个订单有一些特定的产品,我需要显示不同的条款和条件页面。
在结帐时,我们会像图片一样显示 T&C 页面 link
管理员无法做到这一点,所以我将覆盖我模板中的插件 payment.php
文件并针对以下部分进行破解
<?php if ( wc_get_page_id( 'terms' ) > 0 && apply_filters( 'woocommerce_checkout_show_terms', true ) ) : ?>
<p class="form-row terms">
//If condition here
<label for="terms" class="checkbox"><?php printf( __( 'I’ve read and accept the <a href="%s" target="_blank">terms & conditions</a>', 'woocommerce' ), esc_url( wc_get_page_permalink( 'terms' ) ) ); ?></label>
<input type="checkbox" class="input-checkbox" name="terms" <?php checked( apply_filters( 'woocommerce_terms_is_checked_default', isset( $_POST['terms'] ) ), true ); ?> id="terms" />
</p>
<?php endif; ?>
functions.php
文件中是否有执行此操作的任何挂钩?
在functions.php
中使用以下代码add_filter('woocommerce_get_terms_page_permalink', 'replace_permalink');
function replace_permalink($permalink){
// do any change to $permalink here depending on your condition or business case
return $permalink;
}
希望对您有所帮助