HomePage › Forums › Themeforest › Milano – Awesome Fashion Responsive WooCommerce Theme › WooCommerce
- This topic has 11 replies, 2 voices, and was last updated 3 years, 5 months ago by Supporter.
-
AuthorPosts
-
May 9, 2021 at 4:26 pm #2903ercanSupport Expired
Hello, How can I edit the checkout form? For example, I want to remove “KANTON (OPTIONAL)
May 9, 2021 at 5:11 pm #2904Hi there,
About this issue, you need to use code and add into file functions.php ( child-theme):
add_filter( 'woocommerce_checkout_fields' , 'milano_remove_checkout_fields' ); function milano_remove_checkout_fields( $fields ) { unset($fields['billing']['billing_state']); return $fields; }
List field you can remove:
unset($fields['billing']['billing_first_name']); unset($fields['billing']['billing_last_name']); unset($fields['billing']['billing_company']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_country']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_phone']); unset($fields['order']['order_comments']); unset($fields['billing']['billing_email']); unset($fields['account']['account_username']); unset($fields['account']['account_password']); unset($fields['account']['account_password-2']);
May 11, 2021 at 6:33 am #2905ercanSupport ExpiredThank you very much!
I have another one please
Could you please at the “shopping cart total” where it says “shipping to”
move the address, postcode and city one line down, otherwise it looks strange and something else, if I click on “change address” I can only change the postcode and city but the street is missing.Link:
Unfortunately there is no function add screenshot here but i hope you understand what I mean, just look in the shopping cart and you will understand.
Thank you for Support!
May 11, 2021 at 8:50 am #2906Hi again,
These are the 4 default fields that woocommerce has set up, it is used to calculate the temporary shipping fee on the shopping cart page, not the official checkout page with full information. The lack of the street address field does not affect the ship fee function here, you can complete the information at the checkout page. In case you still want to add this field, you need to overwrite the cart / shipping-calculator.php file in the woocommerce template folder.
May 12, 2021 at 12:32 am #2907ercanSupport ExpiredThank you for the information.
But could you move the zip code back a line?It looks like this now:
VERSAND NACH VOGESENSTRASSE 71, 4
056 BASEL.but it would be better that way:
VERSAND NACH VOGESENSTRASSE 71
4056 BASELThank you for support!
May 12, 2021 at 8:56 am #2908Ok, I fixed this issue, please recheck.
May 18, 2021 at 11:08 pm #2934ercanSupport ExpiredHello sir,
When I click on “Add to cart” for a product, a field opens on the right-hand side with “Warenkorb Anzeigen” and “Kasse” but I want these two buttons to be below and not above (as in the demo version.)
And to delete the product I want to use this trash can icon and not an X.
I hope you understand what i mean.
Look Demo Version: Home2
https://preview.themeforest.net/item/milano-fashion-responsive-woocommerce-theme/full_screen_preview/12780388?_ga=2.73630482.1041107954.1621352939-1920838895.1620838876- This reply was modified 3 years, 6 months ago by ercan.
May 19, 2021 at 8:50 am #2937I have just fixed this issue, please recheck.
June 4, 2021 at 9:19 pm #2973ercanSupport ExpiredHello sir,
Can’t I change the category order?
And the “Alle” category is not displayed
https://mensbracelets.ch/produkt-kategorie/alle/I want the category as I have made it on my “home” page
Thanks for your help!
June 4, 2021 at 10:07 pm #2975Hi,
I have just added Section Sidebar for Woocommerce Shop Widget, please recheck
June 8, 2021 at 7:20 pm #2976ercanSupport ExpiredThank you
June 9, 2021 at 8:53 am #2977Ok, let me know if you need to help.
-
AuthorPosts
You must be logged in to reply to this topic.