• Resolved graichura

    (@graichura)


    Hi,

    I use your service for generation of the Terms and Conditions page for a UK Limited Company, which is registered in England and Wales.

    Therefore under point of your automated Terms and Conditions page generated on point 23 ‘Choice of Law and Jurisdiction’, it currently reads as ‘United Kingdom’. The problem there is that also includes Scotland and Northern Ireland, which would make the Terms and Conditions inaccurate based on a Ltd business registered in England and Wales, whose laws it will be governed by.

    It needs to be changed to England and Wales. However, there does not seem to be an option for this.

    I did try to edit the page using instructions to unsync the page from complianzs, but it ruins the formatting of the text and headers, etc.

    Can you advise if there is a way to fix this so that we don’t have to unsync and can specify the correct regions in the UK?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support jarnovos

    (@jarnovos)

    Hi @graichura,

    Sure, you can use the following filter to replace all instances of United Kingdom with England and Wales in the Terms and Conditions document; which avoids the need to ‘un-sync’ the document.

    <?php
    function cmplz_tc_document_html( $html ) {
            $html = str_replace( 'United Kingdom', 'England and Wales', $html);
            return $html;
       }
       add_filter( 'cmplz_tc_document_html', 'cmplz_tc_document_html' );

    You can add it as a new .php file in the /wp-content/mu-plugins/ folder on your website.

    Kind regards, Jarno

    Thread Starter graichura

    (@graichura)

    Hi Jarno,

    Thanks for the quick response. This may be a stupid question, but does the php file need to be given a specific name when it is saved in order to work?

    Thanks,
    Gopesh

    • This reply was modified 1 year, 4 months ago by graichura. Reason: This is resolved - thanks so much Jarno
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Choice of Law & Jurisdiction | Missing England and Wales’ is closed to new replies.