FindATrade FindATrade.ie
Register
FindATrade FindATrade.ie
Register Your Business

Expert Help,
Just a Click Away

The trusted marketplace for local trade professionals.

Carlow
Dungarvan
Kilkenny
Waterford
Wexford
Filter by Area...
Carlow
Dungarvan
Kilkenny
Waterford
Wexford

Unlock expert trade insights, exclusive local discounts, and your chance to win one of ten €50 Screwfix vouchers, subscribe to the newsletter today!

Professionals in Ireland

1279 verified results
PREMIUM PARTNER
Kilkenny

Cooke’s Bus Hire

Cooke's Bus Hire – Reliable Travel from Waterford & Kilkenny Based in Ballygriffin, Carrigeen (X91…

PREMIUM PARTNER
Kilkenny

Nolan Mini Bus Hire

Hello, my name is Edmund and I am a sole trader operating a 14 seater…

PREMIUM PARTNER
Kilkenny

Newpark Podiatry Clinic

Nailcare , corns and callus removal, permanent correction of Ingrowing toenails, orthotics/insoles, verrucae treatment ,…

PREMIUM PARTNER
Kilkenny

Foot Care Clinic

We are committed to achieving results through the resolution of complex cases, leveraging cutting-edge products…

PREMIUM PARTNER
Kilkenny

Zlata’s Cleaning Service

We provide two types of cleaning, Standard Cleaning and Deep Cleaning. There is a major…

PREMIUM PARTNER
Kilkenny

Ace Chimney Sweep

Welcome to Ace Chimney Sweep Spotless Work – Spotless Chimney! SERVICE AREAS – CARLOW –…

PREMIUM PARTNER
Kilkenny

Pear & Thyme Catering

People-First Approach Everything we do is built around understanding your needs and helping you succeed—because…

PREMIUM PARTNER
Waterford

Elite Events & Caterers

Celebration Space We will take care of all your event needs, from planning to execution…

PREMIUM PARTNER
Kilkenny

Top Level Cleaning

Top Level Cleaning Kilkenny Carlow Tipperary Laois Waterford Wexford Polite, Professional and Punctual. Based in…

PREMIUM PARTNER
Kilkenny

Cleanmax Cleaners

At Cleanmax, we provide comprehensive cleaning and facility management solutions for residential, commercial, and industrial…

PREMIUM PARTNER
Kilkenny

Paul Butler Joinery

We specialise in custom built cabinets, external doors, internal doors, sash windows, stairs, windows seats,…

PREMIUM PARTNER
Kilkenny

Cruitt Joinery

Supply and install of all timber products Windows Doors Stairs etc

×

The Findatrade Newsletter

Subscribe for expert advice and discounts, and win one of 10 €50 Screwfix vouchers.

'post_type' => 'craftsman', 'post_status' => 'publish', 'fields' => 'ids', 'nopaging' => true, 'tax_query' => array('relation' => 'AND'), ); if (!empty($active_areas)) { $args_base['tax_query'][] = array( 'taxonomy' => 'city', 'field' => 'slug', 'terms' => $active_areas, 'operator' => 'IN' ); } // ----------------------------------------------------------------------------- // 3. EXECUTE SEARCHES (RESTORING ORIGINAL LOGIC) // ----------------------------------------------------------------------------- $ids_cat = $ids_tag = $ids_text = array(); if (!empty($raw_cat)) { $cat_args = $args_base; $cat_args['tax_query'][] = array('taxonomy' => 'trade', 'field' => 'slug', 'terms' => $raw_cat); $ids_cat = get_posts($cat_args); } if (!empty($raw_s)) { $s_clean = strtolower(trim($raw_s)); $search_stem = (strlen($s_clean) >= 4) ? substr($s_clean, 0, 4) : $s_clean; $matched_cats = get_terms(array('taxonomy' => 'trade', 'name__like' => $search_stem, 'fields' => 'slugs')); if (!empty($matched_cats)) { $ts_args = $args_base; $ts_args['tax_query'][] = array('taxonomy' => 'trade', 'field' => 'slug', 'terms' => $matched_cats); $ids_cat = array_merge($ids_cat, get_posts($ts_args)); } $tag_args = $args_base; $tag_args['meta_query'] = array( 'relation' => 'OR', array('key' => 'ft_search_tags_tag_1', 'value' => $search_stem, 'compare' => 'LIKE'), array('key' => 'ft_search_tags_tag_2', 'value' => $search_stem, 'compare' => 'LIKE'), ); $ids_tag = get_posts($tag_args); $text_args = $args_base; $text_args['s'] = $raw_s; $ids_text = get_posts($text_args); } if (empty($raw_s) && empty($raw_cat)) { $final_ids = get_posts($args_base); } else { $final_ids = array_unique(array_merge((array)$ids_cat, (array)$ids_tag, (array)$ids_text)); } if (empty($final_ids)) { $final_ids = array(0); } // ----------------------------------------------------------------------------- // PROMO STICKER SORTERING (Zorgt dat stickers bovenaan komen zonder zoekfouten) // ----------------------------------------------------------------------------- if (!empty($final_ids) && $final_ids !== array(0)) { usort($final_ids, function($a, $b) { $sticker_a = get_post_meta($a, 'ft_promo_sticker', true) ? 1 : 0; $sticker_b = get_post_meta($b, 'ft_promo_sticker', true) ? 1 : 0; // Als A wel een sticker heeft en B niet, komt A eerst (-1) if ($sticker_a !== $sticker_b) { return $sticker_b - $sticker_a; } // Anders sorteren op plan niveau (Premium > Basic > Free) $plans = array('premium' => 3, 'basic' => 2, 'free' => 1); $plan_a = $plans[get_post_meta($a, 'ft_listing_type', true)] ?? 1; $plan_b = $plans[get_post_meta($b, 'ft_listing_type', true)] ?? 1; if ($plan_a !== $plan_b) { return $plan_b - $plan_a; } // Als laatste op datum (nieuwste eerst) return get_post($b)->post_date <=> get_post($a)->post_date; }); } // ----------------------------------------------------------------------------- // 4. FINAL QUERY & RESULTS // ----------------------------------------------------------------------------- $total_found = ($final_ids === array(0)) ? 0 : count($final_ids); $slider_speed = get_field('home_slider_speed', 'option') ?: 5; $slides = get_field('home_hero_slides', 'option'); $final_args = array( 'post_type' => 'craftsman', 'post_status' => 'publish', 'post__in' => $final_ids, 'orderby' => 'post__in', // Behoudt de juist ingestelde sortering uit usort hierboven 'posts_per_page' => $posts_per_page, 'paged' => $paged ); $the_query = new WP_Query($final_args); global $wp_query; $wp_query->max_num_pages = ceil($total_found / $posts_per_page); $wp_query->found_posts = $total_found; $trade_string = !empty($raw_s) ? ucfirst($raw_s) : "Professionals"; if (!empty($raw_cat)) { $term = get_term_by('slug', $raw_cat, 'trade'); if($term) $trade_string = $term->name; } $loc_string = !empty($city_names) ? implode(', ', $city_names) : "Ireland"; ?>

Expert Help,
Just a Click Away

The trusted marketplace for local trade professionals.

Carlow
Dungarvan
Kilkenny
Waterford
Wexford
Filter by Area...
Carlow
Dungarvan
Kilkenny
Waterford
Wexford

Unlock expert trade insights, exclusive local discounts, and your chance to win one of ten €50 Screwfix vouchers, subscribe to the newsletter today!

Professionals in Ireland

1279 verified results
PREMIUM PARTNER
Kilkenny

Cooke’s Bus Hire

Cooke's Bus Hire – Reliable Travel from Waterford & Kilkenny Based in Ballygriffin, Carrigeen (X91…

PREMIUM PARTNER
Kilkenny

Nolan Mini Bus Hire

Hello, my name is Edmund and I am a sole trader operating a 14 seater…

PREMIUM PARTNER
Kilkenny

Newpark Podiatry Clinic

Nailcare , corns and callus removal, permanent correction of Ingrowing toenails, orthotics/insoles, verrucae treatment ,…

PREMIUM PARTNER
Kilkenny

Foot Care Clinic

We are committed to achieving results through the resolution of complex cases, leveraging cutting-edge products…

PREMIUM PARTNER
Kilkenny

Zlata’s Cleaning Service

We provide two types of cleaning, Standard Cleaning and Deep Cleaning. There is a major…

PREMIUM PARTNER
Kilkenny

Ace Chimney Sweep

Welcome to Ace Chimney Sweep Spotless Work – Spotless Chimney! SERVICE AREAS – CARLOW –…

PREMIUM PARTNER
Kilkenny

Pear & Thyme Catering

People-First Approach Everything we do is built around understanding your needs and helping you succeed—because…

PREMIUM PARTNER
Waterford

Elite Events & Caterers

Celebration Space We will take care of all your event needs, from planning to execution…

PREMIUM PARTNER
Kilkenny

Top Level Cleaning

Top Level Cleaning Kilkenny Carlow Tipperary Laois Waterford Wexford Polite, Professional and Punctual. Based in…

PREMIUM PARTNER
Kilkenny

Cleanmax Cleaners

At Cleanmax, we provide comprehensive cleaning and facility management solutions for residential, commercial, and industrial…

PREMIUM PARTNER
Kilkenny

Paul Butler Joinery

We specialise in custom built cabinets, external doors, internal doors, sash windows, stairs, windows seats,…

PREMIUM PARTNER
Kilkenny

Cruitt Joinery

Supply and install of all timber products Windows Doors Stairs etc

×

The Findatrade Newsletter

Subscribe for expert advice and discounts, and win one of 10 €50 Screwfix vouchers.