From where i update this checkout page element

This topic has 6 replies, 2 voices, and was last updated 1 months, 4 weeks ago ago by Tony Rodriguez

  • Avatar: Anurag
    Anurag
    Participant
    February 3, 2025 at 17:04

    I want to choose some customs feild in my checkout page how should i remove or add elements there

    https://pearlshine.in/checkout/

    Files is visible for topic creator and
    support staff only.
    5 Answers
    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    February 4, 2025 at 05:31

    Hello, @Anurag,

    Thank you for contacting us and for using XStore.

    1/ B/ To remove the unnecessary fields on the checkout page, we kindly request you to review and implement the custom code.

    To remove the City & State fields, please add the following code under functions.php file locates in your child theme:

    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
    
    // Our hooked in function - $fields is passed via the filter!
    function custom_override_checkout_fields( $fields ) {
        unset( $fields['billing']['billing_city'] );
        unset( $fields['billing']['billing_state'] );
    
        return $fields;
    }

    You can remove more fields from this list:

    billing_first_name
    billing_last_name
    billing_company
    billing_address_1
    billing_address_2
    billing_city
    billing_postcode
    billing_country
    billing_state
    billing_email
    billing_phone

    We trust this will assist you in achieving the desired outcome.

    Should you have any further questions or require additional assistance, please do not hesitate to reach out.

    Best regards,
    The 8Theme Team

    Avatar: Anurag
    Anurag
    Participant
    February 4, 2025 at 06:57

    Can you help me to change the size of the button

    Files is visible for topic creator and
    support staff only.
    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    February 4, 2025 at 09:08

    Hello, @Anurag,

    Thank you for your response.

    We kindly request further clarification regarding your inquiry, as certain aspects are a bit unclear to us. To assist you more effectively, could you please provide a screenshot of the issue? If possible, kindly mark the specific button whose size you would like to adjust. This will help us better understand your request and provide the necessary support.

    Thank you for your cooperation.

    Best regards,
    The 8Theme Team

    Avatar: Anurag
    Anurag
    Participant
    February 4, 2025 at 09:18

    This view button when we see our order details

    Files is visible for topic creator and
    support staff only.
    Avatar: Tony Rodriguez
    Tony Rodriguez
    Support staff
    February 4, 2025 at 09:35

    Hello, @Anurag,

    Thank you for your response

    Please try to add the next custom CSS Code in XStore > Theme Options > Theme Custom CSS > Global CSS

    .my_account_orders td .button:first-of-type {
        height: 35px !important;
        width: 25% !important;
        padding-top: 7px !important;
    }

    We hope this helps. Should you have any further questions or require additional assistance, please do not hesitate to reach out.

    Best regards,
    The 8Theme Team

    Please contact administrator
    for this information.
  • Viewing 6 results - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.Log in/Sign up

Helpful Topics

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.