Home Forums WoodMart support forum Add text in shopping cart widget

Add text in shopping cart widget

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #183851

    PD11
    Participant

    Hi,

    I’d like to add a simple (html) text to the shopping cart widget (see screenshot 1). I’d like to place it just above the sub total price (see screenshot 2)

    Could you please provide me some custom css to do this? Thanks!

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

    Hello,

    Unfortunately, there is no option to insert the text into the shopping cart widget.

    Best Regards

    #183978

    PD11
    Participant

    Hi Elise,

    Ah that’s too bad. Got to other requests for the shopping cart, which should be possible:

    – I’d like to remove the input selector in the shopping cart. I just has to show the number
    – I’d like to make the text color of the shipping method title green.

    See screenshot for details.

    Could you please provide me custom CSS for this? Thanks!

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

    Hello,

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

    body.woocommerce-cart .product-quantity{
    	display:none
    }
    #shipping_method label {
        color:red;
    }
    body.woocommerce-cart .cart-totals-inner .woocommerce-shipping-destination {
       color:red;;
    }

    Best Regards

    #184037

    PD11
    Participant

    Hi Elise,

    That works, thanks!

    Last request for the shopping cart – I’d like to change the color of the ‘redeem coupon code’ button in the shopping cart? How can I do this? Thanks!

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

    Hello,

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

    .checkout_coupon .button{
    color:red!important;
    background-color:yellow;
    }

    Best Regards

    #184064

    PD11
    Participant

    Hi Elise,

    Unfortunately that doesn’t work. The button doesn’t change in color. Do you have another code?

    #184089

    Hello,

    Try this one:

    body .checkout_coupon .button{
    color:red!important;
    background-color:yellow;
    }

    Best Regards

    #184100

    PD11
    Participant

    Hi Elise,

    Still doesn’t work unfortunately.

    #184154

    PD11
    Participant

    Do you have another option / CSS code for me?

    #184182

    Hello,

    The code works https://prnt.sc/rrsyb2

    Please try to clean the cache if it does not help, provide the site admin access to the private area.

    Best Regards

    #184242

    PD11
    Participant

    Hi Elise,

    I see what the problem is. You’ve provided custom code for the button in the checkout. I asked for code for the coupon code button in the shopping cart.

    Could you please provide me the right code? Thanks 🙂

    #184253

    Hello,

    Please provide your site URL. If your site is under maintenance, please provide your site admin access to the private area.

    Best Regards

    #184254

    PD11
    Participant

    Sure, please check private content.

    #184297

    Hello,

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

    body .btns-shop-light .cart-actions .button[name=apply_coupon]{
    color:yellow;
    }
    body .cart-actions .button[name="apply_coupon"]{
    background-color:red;
    }

    Best Regards

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