Home / Can You Add More Product Types To The Product Search Boxes?
Duplicate Snippet

Embed Snippet on Your Site

Can You Add More Product Types To The Product Search Boxes?

Here’s an example snippet showing how a product type called “Booking” can be added to the products available for searching:

Code Preview
php
<?php
add_filter( 'acfw_product_search_allowed_types' , 'support_booking_product_type_in_search' );
function support_booking_product_type_in_search( $allowed_types ) {
    $allowed_types[] = 'booking';
    $allowed_types[] = 'bundle';
    $allowed_types[] = 'composite';
    return $allowed_types;
}

Comments

Add a Comment