Select Page

Use Quick View button or not in widgets and shortcodes.

Parameters

  1. quick_view – can be true or false

Usage

<?php
function change_products_of_day_widget_quick_view ( $quick_view ) {
//your code here
    return $quick_view;
}

add_filter( 'products_of_day_widget_quick_view', 'change_products_of_day_widget_quick_view' );
?>