Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #2903
    Avatarercan
    Support Expired

    Hello, How can I edit the checkout form? For example, I want to remove “KANTON (OPTIONAL)

    Kasse

    #2904

    Hi 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']);
    #2905
    Avatarercan
    Support Expired

    Thank 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:

    Warenkorb

    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!

    #2906

    Hi 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.

    #2907
    Avatarercan
    Support Expired

    Thank 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 BASEL

    Thank you for support!

    #2908

    Ok, I fixed this issue, please recheck.

    #2934
    Avatarercan
    Support Expired

    Hello 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 2 years, 11 months ago by Avatarercan.
    #2937

    I have just fixed this issue, please recheck.

    #2973
    Avatarercan
    Support Expired

    Hello 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

    Home

    Thanks for your help!

    #2975

    Hi,

    I have just added Section Sidebar for Woocommerce Shop Widget, please recheck

    #2976
    Avatarercan
    Support Expired

    Thank you

    #2977

    Ok, let me know if you need to help.

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

You must be logged in to reply to this topic.