Home Forums WoodMart support forum Change checkout page

Change checkout page

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #309279

    SmartInk
    Participant

    Hello dear support. I need to change the checkout page, and I don’t understand how to change design for this page. Can you help me?

    Attachments:
    You must be logged in to view attached files.
    #309283

    Hello,

    I saw the screenshot you attached.

    Could you please elaborate on what you actually want with some relevant screenshots to check it myself and help you out accordingly?

    Best Regards

    #309304

    SmartInk
    Participant

    This is my page right now (look at attachments), I need to move elements like in the screenshot above.

    Attachments:
    You must be logged in to view attached files.
    #309388

    Hello,

    I saw the screenshot you attached.

    Sorry but there is no option in Theme Settings available for that.

    It requires customizations and this is beyond our limitations and support policy.

    Best Regards.

    #309558

    SmartInk
    Participant

    Ok, maybe you can give me advice on how to change the field order? For example: how can I move the email field up.

    #309635

    Hello,

    Sorry, this is not possible without customization in the theme files. You have to ask your developer to do it for you to make the changes in the theme PHP files.

    And this is beyond our limitations and support policy, I hope you can understand our limitations and policy.

    Best Regards.

    #309673

    SmartInk
    Participant

    No problem, I did it with PHP snippet. Maybe it would be helpful for other people:

    add_filter( 'woocommerce_checkout_fields', 'order_email_first' );
    function order_email_first( $checkout_fields ) {
    	$checkout_fields['billing']['billing_email']['priority'] = 4;
    	return $checkout_fields;
    }

    Moves email field above other fields.

    #309717

    Sounds Great! that you have solved the issue by yourself.

    Thanks for sharing the solution with us, it will be very helpful for other users as well.

    Have a great day 🙂

    Topic Closed.
    Best Regards.

Viewing 8 posts - 1 through 8 (of 8 total)

The topic ‘Change checkout page’ is closed to new replies.