Product Categories
Featured Categories
-
Sale!
Minimalist Fashionable Pure Leather Wallet
KShs2,800Original price was: KShs2,800.KShs1,999Current price is: KShs1,999. -
Sale!
Personalized Glass Award and Trophy
KShs7,000Original price was: KShs7,000.KShs6,499Current price is: KShs6,499. -
Sale!
Branded Pen Holder With Digital Clock
KShs3,000Original price was: KShs3,000.KShs2,499Current price is: KShs2,499. -
Sale!
Wooden Digital Clock Pen Organizer
KShs3,500Original price was: KShs3,500.KShs2,499Current price is: KShs2,499. -
Sale!
Corporate With Magnetic Flap A5 Notebooks
KShs1,500Original price was: KShs1,500.KShs1,349Current price is: KShs1,349. This product has multiple variants. The options may be chosen on the product page
We Deliver Country wide
Your orders are delivered seamlessly between counties
Free Delivery Nairobi
* Delivery services subject to availability
Secure Payment
Your payments are secure with our private security network.
add_action( 'woocommerce_product_query', 'filter_products_below_1000_on_page' );
function filter_products_below_1000_on_page( $query ) {
if ( is_page( 'gifts-below-1000' ) ) { // Match your page slug
$meta_query = $query->get( 'meta_query' );
$meta_query[] = array(
'key' => '_price',
'value' => 1000,
'compare' => '<=',
'type' => 'NUMERIC',
);
$query->set( 'meta_query', $meta_query );
}
}