Home Forums WoodMart support forum Missing of “Amount” for add to cart

Missing of “Amount” for add to cart

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #76210

    jinxuetan
    Participant

    I’ve issue where add to cart here will not work as there’re condition of at least to add “2” units and multiple in order to add to cart. Therefore, it creates problem for customers to add items directly from product thumbnail grids as they can’t select the amount of goods.

    Attachments:
    You must be logged in to view attached files.
    #76229

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings

    body .quick-shop-wrapper .woocommerce-variation-add-to-cart {
         -webkit-box-orient: vertical;
         -webkit-box-direction: reverse;
             -ms-flex-direction: column-reverse;
                 flex-direction: column-reverse;
    	   -webkit-box-align: center;
    	       -ms-flex-align: center;
    	           align-items: center;
    }
    body .quick-shop-wrapper .quantity {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
        margin-bottom: 15px;
    }
    
    body .quick-shop-wrapper .single_add_to_cart_button {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
                flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    Regards

    #76303

    jinxuetan
    Participant

    Thanks. There’re 2 more issues here due to quantity rules set to chairs type which customer has to purchase at least 2 and multiple.
    1) the amount of numbers for “add to cart” started at 1 unit instead of 2 units (should be follow product page).
    2) even I have manually insert the amount of 2, it shows invalid amount due to the formula given has step value of 2, which tells the system to start of by 1,3,5 instead of 2,4,6.

    Attachments:
    You must be logged in to view attached files.
    #76308

    Artem Temos
    Keymaster

    This problem is more related to the plugin since our theme doesn’t control that. Try to contact plugin’s developers for help in this situation.

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