';
echo '
';
echo '';
}
function talon_wrapper_end() {
echo '
';
echo '';
}
function talon_close_row() {
echo '';
}
function talon_wrap_wc_image_start() {
echo '';
}
function talon_wrap_wc_image_end() {
echo '
';
}
/**
* Number of columns per row
*/
function talon_shop_columns() {
return 3;
}
add_filter('loop_shop_columns', 'talon_shop_columns');
/**
* Number of related products
*/
function talon_related_products_args( $args ) {
$args['posts_per_page'] = 3;
$args['columns'] = 3;
return $args;
}
add_filter( 'woocommerce_output_related_products_args', 'talon_related_products_args' );
/**
* Hide page title
*/
add_filter( 'woocommerce_show_page_title', '__return_false' );