Home Forums WoodMart support forum How to transfer pages from a one theme to another theme

How to transfer pages from a one theme to another theme

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

    Cody_Israel
    Participant

    Hi, how do I transfer pages from a woodmart theme to another theme? (e.g. footer or prefooter from Retail theme to Electronics theme).

    Can I get help too with adding animated shake “add to cart” like the Gecko shopify theme?

    NB – I came from the comments section.

    #300261

    Hello,

    You can transfer the content by means of the default WordPress functionality.

    You can find the option in the Dashboard > Tools > Export / Import.

    If you are going to have two sites on WoodMart you will have to purchase a separate license for each site. If it is a testing and life version of the same site, one slice can be used.

    If you have any questions please feel free to contact us.

    Best Regards

    #300266

    Cody_Israel
    Participant

    Okay, thanks. Can I get help too with adding animated shake “add to cart” button like the Gecko shopify theme?

    #300321

    Hello,

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

    @keyframes xts-shake {
    		0%,
    		12% {
    		    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
    		}
        2%,
        4%,
        6%,
        8%,
    		10% {
            -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0)
        }
        3%,
        5%,
        7%,
    		9%,
    		11% {
            -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0)
        }
    }
    .entry-summary .single_add_to_cart_button {
    		animation-name: xts-shake;
    		animation-duration: 10s;
    		animation-delay: 5s;
    		animation-iteration-count: infinite;
    		animation-fill-mode: both;
    }

    If you have any questions please feel free to contact us.

    Best Regards

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