Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1032569

    Hi,

    currently it is not possible with your theme to change the quantity of a product in the cart of a mobile screen.
    Is there a reason why this is not possible?
    Do you want to change this in future? I would be happy ;-)

    Thanks,
    Matt

    #1033994

    Hey Matt,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .responsive .shop_table .product-quantity {
        display: block !important;
        max-width: 83px;
      }
    
      .responsive .shop_table .product-quantity input[type="button"] {
        display: none !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1116602

    Hi, thank you.
    It now shows a field where the customer can manually change the number of products (by typing in the number he wants).
    Is it also possible to show a “+” and “-” button to change the number or is this not possible because of the limited space?

    Thanks

    #1116616

    There is a small layout problem with the border-lines around the field “Anzahl” (quantity).
    Please check the attached screenshot. Can you please check this?

    Thanks for your feedback.

    #1116628

    Is it also possible to show the total amount in the same row, after the customer changed the quantity of products.

    Is it planned to change these things into a standard function to make the cart more appropiate for mobile use? I think this is also important for other shops.

    Thanks

    #1116896

    Hi flipstar99,

    To show + and – button and also the border issue, please replace the code I gave with:

    @media only screen and (max-width:767px) {
      .responsive .shop_table .product-quantity {
        display: table-cell !important;
        max-width: 83px;
      }
    
      .responsive .shop_table .product-quantity input[type="button"] {
        display: block !important;
        border: 1px solid #e1e1e1 !important;
      }
    }

    As for the total I think it is too narrow to show it, so it isn’t possible with the current layout.
    We will post this as a feature suggestion :)

    Best regards,
    Nikko

    #1117378

    Hi, thanks, it works.
    Do you know, when this new feature (total amount) can be implemented in usual time frames?

    Thanks!

    #1117433

    Hi,

    Usually new features are added in order of urgency and requests. Unfortunately there is no definitive way of telling exactly when it will be implemented.

    Best regards,
    Jordan Shannon

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.