I want to choose some customs feild in my checkout page how should i remove or add elements there
This topic has 6 replies, 2 voices, and was last updated 1 months, 4 weeks ago ago by Tony Rodriguez
I want to choose some customs feild in my checkout page how should i remove or add elements there
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
Can you help me to change the size of the button
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
This view button when we see our order details
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
You must be logged in to reply to this topic.Log in/Sign up