Home Forums WoodMart support forum Moved: Reply To: need to change everything from “Cart” to “Basket”

Moved: Reply To: need to change everything from “Cart” to “Basket”

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

    Andy18
    Participant

    Hi there,
    I’m in the UK and also need to change everything from “Cart” to “Basket” including the icons.
    Is this method still the best way to approach this or is there an easier way now (I noticed the post was over a year old).
    Thanks in advance,
    Andy

    #132903

    Hello,

    Please specify what do you want to change and for what. If you want to change the icons, yes, you can take the coder from here https://xtemos.com/forums/topic/change-the-word-add-to-cart-etc-to-add-to-bag/#post-132848

    Best Regards

    #133062

    Andy18
    Participant

    Hi there,

    Thanks for your help, that worked perfectly for all text 🙂 .

    Please could you explain how I can now change the icons from a cart to a basket (over products, in the top menu and in the slideout).

    Thanks in advance,

    Andy

    #133098

    Hello,

    You can change the icon in header by the custom icon in the cart element http://prntscr.com/og5f2c

    Use this selector for Slide

    body .cart-widget-side .widget_shopping_cart .empty:before {
        content: "\f120";
        font-family: "woodmart-font";
    }

    this one for the cart in the header:

    .woodmart-shopping-cart.woodmart-cart-alt .woodmart-cart-icon:before {
        content: "\f120";
        font-family: "woodmart-font";
    }

    and this one for the product grid:

    body .product-list-item .woodmart-add-btn>a:before,
    body .woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small):not(.add-small-button) .woodmart-add-btn>a:before,
    body .woodmart-hover-button .hover-mask>a:before,
    body .woodmart-hover-info-alt .product-actions>a:before,
    body .woodmart-hover-quick .woodmart-add-btn > a:before,
    body .woodmart-hover-standard .btn-add>a:before,
    body .woodmart-price-table .woodmart-plan-footer .add-to-cart-loop:before {
     content: "\f120";
    }
    body .quick-shop-wrapper .single_add_to_cart_button:before{
    	 content: "\f120";
    }

    You can insert content from https://fontawesome.com/v4.7.0/icons/ and add font-family: FontAwesome;

    Best Regardsd

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