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

    (@yithemes)

    Hi,
    you can do something like this.

    add_action( 'template_redirect', 'move_quick_view_button' );
    function move_quick_view_button(){
    
       if( class_exists( 'YITH_WCQV_Frontend' ) ) {
       remove_action( 'woocommerce_after_shop_loop_item', array( YITH_WCQV_Frontend(), 'yith_add_quick_view_button' ), 15 );
    
       add_action( 'here your action', array( YITH_WCQV_Frontend(), 'yith_add_quick_view_button' ), 15 );
    
       }
    
    }

    so change “here your action” qith the action where you want to move the button.

    Regards. ??

    Thread Starter jay7134

    (@jay7134)

    Hi,

    Thank you it works, really appreciated your help.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change quick view button position on shop page’ is closed to new replies.