Hi Enfold.
Terms of trade is showing tow times when i chechout and further more Terms of trade normally is showing as a link and checkbox?
Hope you can advice me.
Best regards
Soren
Hey vanggrafisk,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Here is a thread for you to consider meanwhile
Best regards,
Victoria
Hi,
Did you try the suggestions posted in the thread Victoria linked to?
In your functions.php file:
add_filter('woocommerce_format_content', 'yanco_remove_inline_terms', 10, 2);
function yanco_remove_inline_terms( $apply_filters, $raw_string ) {
if( is_checkout() ) {
return '';
}
return $apply_filters;
}
Best regards,
Rikard