• Resolved hellotoyou

    (@hellotoyou)


    I tried what i know and was not able:
    – Make the last name not required;
    – First name full witdh;
    – shipping_city and shipping_postcode 50% width (to be on the same line);

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Diego Versiani

    (@diegoversiani)

    Hi @hellotoyou,

    Fluid Checkout is fully compatible with the native WooCommerce filter hooks used to make changes to the checkout fields, be it to change labels, add new fields, or remove existing fields.

    For more information about how to customize checkout fields, check our article:
    Customizing existing checkout field and adding custom checkout fields

    I’m closing this topic for now. If you need further assistance, please reply to this topic.

    Best,
    Diego

    Thread Starter hellotoyou

    (@hellotoyou)

    If someone is looking for this, here is :

    /*Checkout fields*/
    /*Retirar espaçamento*/
    div.woocommerce form .form-row.form-row-first {margin-right: 0em !important}
    
    .form-row.form-row-first.validate-required {width: 50% !important;float: left; display: inline-block;}
    
    .form-row.form-row-last.validate-required {width: 50% !important; float: right; display: inline-block }
    
    .form-row.address-field.form-row-first.validate-required {width: 50%; float: right; display: inline-block }
    
    .form-row.address-field.form-row-first.validate-required.validate-postcode {width: 50%; float: right; display: inline-block }
    
    /*Selecionar foco/ borda remover*/
    div.woocommerce form .form-row input[type=text]:focus {outline:0px}

    Thank you Diego

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Optimize check out fields’ is closed to new replies.