Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #852082

    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

    Terms of trade

    #852159

    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

    WooCommerce Checkout Page Terms and Conditions shown twice

    Best regards,
    Victoria

    • This reply was modified 7 years, 2 months ago by Victoria.
    #852165
    This reply has been marked as private.
    #852466

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.