• Resolved jeffatrmc

    (@jeffatrmc)


    Hi,

    We are wondering if there is a way to edit the look of specific pieces of text within the multi-step checkout. We’d like to make “use a different shipping address” A lot bigger and more defined so our users see it. Let me know if there is a class or some way to use it using css/html or if I am just missing some sort of setting.

    Best,
    Jeff

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author SilkyPress

    (@diana_burduja)

    Jeff,

    you can use the following CSS rule to increase the size of the “Ship to a different address?” text:

    #ship-to-different-address label span {
        font-size: 18px !important;
        font-weight: bold !important;
    }

    The CSS rule can be added to the “WP Admin -> Appearance -> Customize -> Additional CSS” page.

    Thread Starter jeffatrmc

    (@jeffatrmc)

    @diana_burduja Thank you!

    Is there any way to make it toggle as off automatically? Right now it is always checked when a customer reaches that page. It’d be great if it wasn’t.

    Best,
    Jeff

    Plugin Author SilkyPress

    (@diana_burduja)

    That can be done by adding the following PHP snippet to your child theme’s functions.php file:

    add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );

    Thread Starter jeffatrmc

    (@jeffatrmc)

    Perfect! Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Ways to edit text appearance’ is closed to new replies.