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

    First sorry for my english first
    My problem is very simple
    how to setup the column animation’s time?
    like speed or duration
    because my client he didn’t see it, because it to fast…………..
    I want it “left to right” slower
    please help me
    Thanks

    #942005

    Hey ikiyamay,
    Please try adding this css to WordPress > Customize > Additional CSS:

    .avia_transform .avia_start_delayed_animation.left-to-right {
        -webkit-animation: avia-ltr 1.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
        animation: avia-ltr 1.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
    }

    The built in time is: 0.8s I changed to 1.8s, feel free to adjust to suit.
    If this doesn’t work please Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    #942117

    Dear Mike

    Thanks for your help, it work !
    ^_^

    #942145

    Hi,

    Great, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #942160

    Thank you again, but I have another question,
    I have see “how to add the sidebat on the single product page” the question
    Is very good to work, but how to let the sidebar on the left side, because the solution is on the right side
    Thank you very much

    And this ode in the function.php
    // adjust settings on init
    add_action(‘init’,’ava534345953_init’, 50);
    function ava534345953_init() {
    add_action( ‘woocommerce_after_single_product_summary’, ‘avia_add_sidebar’, 25);
    }

    function avia_close_image_div() {
    echo “</div>”;
    }

    function avia_add_sidebar() {
    if(is_product()) {
    $avia_config[‘currently_viewing’] = “shop_single”;
    get_sidebar();
    }
    }

    .single-product-main-image {
    width: 25%;
    }

    And this css code in the Quick CSS field:
    .single-product-summary {
    overflow: hidden;
    width: 45%;
    float: left;
    margin-right: 5%;
    }

    .single-product .sidebar {
    width: 25%;
    }

    #942208

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look. Along with a link to a page that shows the sidebar.

    Best regards,
    Mike

    #942381

    Thanks
    Below is the page link

    right now the sidebar is on the right
    may I move it to left
    Thanks

    #942529

    Hi,
    Thanks for the links, but I would like to login to see your settings should there be a easy solution. Right now I’m redirected to your home page when I try to go to /wp-admin/ I believe you may have a security plugin that will only allow login based on IP address, please disable.

    Best regards,
    Mike

    #942540

    sorry about that, I past the login address on private content
    Thanks

    #943099

    Hi,
    I adjusted your css to this:

    /* single product sidebar left */
    .single-product-main-image {
        width: 25%;
    }
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: right;
        margin-right: 5%;
    }
    .single-product-main-image {
    	float: right;
    	margin-right: 0px !important; 
    }
    .single-product .sidebar {
        width: 25%;
    	 float: left;
    	border-left-style: none !important; 
        border-left-width: 0px !important; 
    }
    .single-product .inner_sidebar {
        margin-left: 0px !important; 
    	margin-right: 50px !important; 
    }
    

    Please check.
    For future readers, this was the function to create a single product sidebar:

    // single product sidebar
    add_action('init','ava534345953_init', 50);
    function ava534345953_init() {
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25);
    }
    
    function avia_close_image_div() {
    	echo "</div>";
    }
    
    function avia_add_sidebar() {
    	if(is_product()) {
    	$avia_config['currently_viewing'] = "shop_single";
    	get_sidebar();
    	}
    }

    Best regards,
    Mike

    #943176

    You are the BEST !!!!
    Thank you very much
    ^_^

    #943185

    Hi,

    I’m glad Mike was able to help. If you need anything else, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘How to setup the Column animation speed or duration ?’ is closed to new replies.