Woocommerce checkout page add hyperlink for Terms & Conditions + required fields asterix

Hi there

I have written my Terms & Conditions for my webshop.

I have 2 questions:

Via Customizer I can set the page and I can add text that displays a checkbox to agree with the Terms & Conditions.

But I cannot set a hyperlink for the words Terms & Conditions.

I tried to add:

I have read the <a href="link-to-terms">Terms & Conditions </a> of this website and I agree.

But the hyperlink does not show.

See screenshots please (site = in Dutch):

Is there an option that I can delete the * for required fields? Or an option that I can place a text under my form with " * These fields are required " or something?

Thanks for your help!!! :slight_smile:

Hey @Woordenaar,

1. I tested inserting HTML in Appearance > Customize > WooCommerce > Checkout > Terms and conditions field and it works while it does not in your site. I see you’re using a third party plugin to turn the checkout process into multi-step. That is most probably the cause of the issue. Please test for a conflict.

2. The asterisk can be hidden using this CSS:

.woocommerce-checkout .required {
	display: none;
}

Thanks.

@christian_y

I have disabled the multi step checkout and with standard woocommerce checkout the issue is the same.

When plugin is disabled, in the customizer > woocommerce > checkout > Terms & Conditions I wrote:

Ik heb de <a href="https://audiopc.testverbeelding.be/nl/algemene-voorwaarden/">Algemene Voorwaarden </a>van de website gelezen en ga hiermee akkoord

This gives output:

So not only are the words “Algemene Voorwaarden” not visible, it is also not linkable.

Please look into it. I have given you my website credentials.

Thanks in advance!!

Hi @Woordenaar,

It’s because of this custom CSS, and it hides the link

div#payment label a {
    display: none;
}

Please remove it or, change it to something like this

div#payment label a {
    display: inline-block;
}

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.