• Hey i want quick view button to be just below product image
    Like

    <div class="kad-woo-image-size">
    <div class="product_details">
    <span class="product_price headerfont">
    <a class="button yith-wcqv-button" data-product_id="1607" href="#" style="position: static;">Quick view </a>

    i want to move it below image between kad-woo-image-size & product_details
    thank you !

    https://www.ads-software.com/plugins/yith-woocommerce-quick-view/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    for move the button in another position you have to change this action add_action( 'woocommerce_after_shop_loop_item', array( $this, 'yith_add_quick_view_button' ), 15 ); in class.yith-wcqv-frontend.php. You can do this from your functions.php file. Maybe something like this

    if( class_exists( 'YITH_WCQV_Frontend' ) ){
    $quick_view = YITH_WCQV_Frontend();
    remove_action('woocommerce_after_shop_loop_item', array( $quick_view, 'yith_add_quick_view_button' ), 15 );
    add_action( 'action_where_you_want_button', array( $quick_view, 'yith_add_quick_view_button' ), priority_number );
    }

    Maybe, but it depends from your product layout, you can move button using css rules. Feel free to send me link of your site, so I can check it.

    Let me know, regards ??

    Thread Starter rdxcsgoid

    (@rdxcsgoid)

    Hey thank you ! I got it .
    I am facing another issue.

    I am using woocommerce product add-on. !
    Which works perfect on product page , but not in quick view.
    Here is my shop page
    https://cardmart.in/shop/
    You can see quick view , when you hover on any product.
    thank you & if possible please reply fast.

    Plugin Author YITHEMES

    (@yithemes)

    Hi,
    I’m very sorry, but in this moment quick view is not fully compatible with woocommerce product add-on. I send a request to our developer team, so they can add this to next update.

    Stay tuned, greetings ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘move quick view button’ is closed to new replies.