Home Forums WoodMart support forum Hide Cart

Hide Cart

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #540127

    constantinos.rokkos
    Participant

    Hello i want to hide the cart that appears on the animation and replace it with the read more that is before the animation.

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

    Hello,

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

    .wd-add-btn-replace .add-to-cart-loop:before {
        content: "Read more" !important;
    }

    Best Regards.

    #540278

    constantinos.rokkos
    Participant

    Thank you for your answer, it looks bad as you can see on screenshot. Maybe give me custom css to remove the animation and just leave the read more as it is?

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

    Hello,

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

    body .wd-add-btn-replace .add-to-cart-loop span {
        transform: translateY(-100%) translateZ(0);
    }
    body .wd-add-btn-replace .add-to-cart-loop:before {
        transition: none;
        transform: none;
        content: "Read More" !important;
        font-size: 15px;
    }

    Best Regards.

    #540499

    constantinos.rokkos
    Participant

    it doesn’t look the same as the original with this code as you can see on the screenshot. Can you give me a code to just remove the animation and make the button static?

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

    Hello,

    You want to make the whole product style static or just add a cart button.

    Best Regards.

    #540654

    constantinos.rokkos
    Participant

    Hello, please just send me the code for the “READ MORE” button not to do any anymation just stay as it is in the photo attached when its hovered

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

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global and check the issue after completely clearing the browser cache.

    body .wd-add-btn-replace .add-to-cart-loop span {
        transform: translateY(-100%) translateZ(0);
    }
    body .wd-add-btn-replace .add-to-cart-loop:before {
        transition: none;
        transform: none;
        content: "Read More";
        font-size: 15px;
    }

    If the issue remains, share the wp logins details so i will further check and give you a possible solution.

    Best Regards.

    #542753

    constantinos.rokkos
    Participant

    it worked but it doesn’t translate to greek when i change the language with WPML. Can you provide new css?

    #543119

    Hello,

    Please share the wp logins details so I will further check and give you a possible solution.

    Best Regards.

    #543126

    constantinos.rokkos
    Participant

    ok

    #543430

    Hello,

    Please use the below custom CSS code:

    body .wd-add-btn-replace .add-to-cart-loop span {
        transform: translateY(-100%) translateZ(0);
    }
    :lang(en) body .wd-add-btn-replace .add-to-cart-loop:before {
        transition: none;
        transform: none;
    	  content: "Read More";
        font-size: 15px;
    }
    :lang(el) body .wd-add-btn-replace .add-to-cart-loop:before {
        transition: none;
        transform: none;
    	  content: "Δειτε Περισσοτερα";
        font-size: 15px;
    }

    Best Regards.

Tagged: 

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