SOLVED: Woocommerce Notice element not working on Checkout Template

I am still anxiously waiting for a solution for the placement of coupon form and login form at checkout page. It’s a much-needed function.

Is there any news on this yet?

The task is still in progress, but there is now a separate report on it: WIP: WooCommerce Coupon/Returning Customer Notice Outside of Notice Element - #2 by timmse

Try this fix in the bricks settings >> custom code >> custom css for the coupon code to style it better. You may need to set the width and margin to suite your needs. See the comments in the code.

/*----- START Checkout -- Enter Coupon Code -----*/
.brxe-container.before-checkout {
    /* 
     *    Set this width (or max-width) equal to your theme  
     *    container width + theme section left & right margins.
     */
    width: 1260px;
} 

.brxe-container.before-checkout .woocommerce-info {
    font-family: Inter;
    /* 
     *    Set left & right margins the same as your theme 
     *    section left & right margins.
     */
    margin: 20px 30px 0 30px;
}

@media (max-width: 478px) {
    .brxe-container.before-checkout .woocommerce-info {
        /* 
         *    Set left & right margins the same as your theme 
         *    section left & right margins.
         */
        margin: 20px 10px 0 10px;
    }
}

.woocommerce-checkout form.checkout_coupon {
    /* 
     *    Set left & right margins the same as your theme 
     *    section left & right margins.
     */
    margin: 30px 30px;
}

@media (max-width: 478px) {
    .woocommerce-checkout form.checkout_coupon {
        /* 
         *    Set left & right margins the same as your theme 
         *    section left & right margins.
         */
        margin: 30px 10px;
    }
}

@media (max-width: 991px) {
    .brxe-container.before-checkout .woocommerce-form-coupon .form-row-first {
        margin-bottom: 10px;
    }
}

/*----- END Checkout -- Enter Coupon Code -----*/

This is from the Easy Bricks Builder WooCommerce Template Kit v1.1.15.

Is there an ETA on getting the coupon thing fixed? I’m new to Bricks but I see this issue is 10+ months old now. My checkout pages look terrible as a result of this bug.

1 Like

This coupon issue needs to be fixed asap. the checkout page looks so bad !

2 Likes