Home Forums WoodMart support forum Woodmart compatibility with plugin"Order Minimum/Maximum Amount for WooCommerce"

Woodmart compatibility with plugin"Order Minimum/Maximum Amount for WooCommerce"

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

    Jeriss Cloud Center
    Participant

    Dear,

    I contacted the plugin support “Order Minimum/Maximum Amount for WooCommerce” to tell them that there is an issue in the display of an extra cart notification for Minimum Amount order.

    They replied that they’re using the default WooCommerce way to display the message with wc_add_notice() function and that anything else in display is in the theme’s responsibility.

    Can you please check and let me know if that’s Woodmart compatibility issue?

    Thanks
    Simon

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

    Hello,

    Here is what I see: https://gyazo.com/ede0d629079114299600f429df2c7ae5

    Please give more details on how to reproduce the problem.

    Best Regards

    #341779

    Jeriss Cloud Center
    Participant

    1) Visit the website give in private
    2) Empty your cart
    3) Add any product that is less than 50 EUR

    AS IS : there is banner on cart that isn’t displayed correctly with Woodmart

    TO BE : the banner should be shown correctly on Woodmart

    NOTE : your cart should be less than 50 EUR to see the banner

    #341817

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .row.woocommerce.cart-content-wrapper {
    justify-content: end;
    }
    .woocommerce-error{
    margin-right:15px;
    }

    Best Regards

    #341819

    Jeriss Cloud Center
    Participant

    Dear Elise,

    The code doesn’t answer to my question. Your code is switching the banner to the right side of the screen. That’s not at all what I asked you.

    Please read back my initial request and the attachment. I showed you in that attachment that the banner doesn’t appear full width. It SHOULD appear full width like the banner just below in the same attachment.

    I just want the banner shown in the attachment to be displed CORRECTLY like all banners.

    Thanks
    Simon

    #341994

    Hello,

    Please replace the code provided above with this one:

    body ul.woocommerce-error{
      margin-right: 15px;
      margin-left: 15px;
      max-width: 100%;
      width: 100%;
    }

    Best Regards

    #342101

    Jeriss Cloud Center
    Participant

    Hello,

    Thanks the code works good, but still there is 1 minor issue.

    When updating the cart (quantity for example), then the banner is still not correctly aligned.

    Any idea what’s wrong here? See video below

    Thanks
    Simon

    #342197

    Hello,

    Try this code:

    body ul.woocommerce-error{
      margin-right: auto;
      margin-left: auto;
      max-width: 100%;
      width: 100%;
    }

    Best Regards

    `

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