Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter deans100

    (@deans100)

    please help clients can’t remove items from checkout <3

    Plugin Author bhavik.kiri

    (@bhavikkiri)

    Hi @deans100 ,

    I apologize for the delay in the response.

    Thanks for sharing the website and the screenshot.

    I noticed that the rtl.css file overwrites the display functionality of the delete icon.

    You can fix that by adding the below code in your child’s theme style.css file

    body.rtl .cart_item .cg-checkout-table-product-name a.remove::before {
        display: block;
    }

    Note: Please take the backup before you apply any code/CSS level changes, and it is highly recommended that you test first on your staging environment and then add a fix on production.

    Please feel free to revert.

    Regards,
    Bhavik

    Thread Starter deans100

    (@deans100)

    its working but “x” not at the right side

    Thread Starter deans100

    (@deans100)

    Plugin Author bhavik.kiri

    (@bhavikkiri)

    hi @deans100 ,

    It is difficult to put the delete icon on the right side, as I can see that you’ve added the product thumbnail and it is not from my plugin.

    You need to make a custom solution for keeping the delete icon on the right side.

    I hope you can understand.

    Regards,
    Bhavik

    Thread Starter deans100

    (@deans100)

    we can’t change line order and put X on right side?

    Thread Starter deans100

    (@deans100)

    or at least make the quantity in the right or left side and not above

    Plugin Author bhavik.kiri

    (@bhavikkiri)

    hi @deans100,

    Yes you can take the quantity field on left side.

    Please add below css on your child theme’s css file.

    
    .woocommerce-checkout-review-order-table .product-name .quantity {
    	float: left;
    }

    Note: Please take the backup before you apply any code/CSS level changes, and it is highly recommended that you test first on your staging environment and then add a fix on production.

    Please feel free to revert.

    Regards,
    Bhavik`

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘“x” hidden and in the left side of the text instead of the right’ is closed to new replies.