At present the Kadence theme doesn’t have Ajax dwell search possibility. On this video I’m going to point out you the right way to add Ajax dwell search to the Kadence. This manner it is possible for you to to dwell seek for merchandise, posts, and so on.
Kadence Theme is presently among the best WordPress themes. So, should you’re , then you’ll be able to seize it right here https://wpsimplehacks.com/kadence (SAVE 10% COUPON: SIMPLEHACKS)
Video: Methods to add Ajax Stay Search to the Kadence Theme?
Code snippet proven within the video:
add_filter('asl_results', 'asl_display_price_w_currency', 10, 1);
perform asl_display_price_w_currency($outcomes) {
$foreign money = isset($args['woo_currency']) ?
$args['woo_currency'] : (
function_exists('get_woocommerce_currency') ?
get_woocommerce_currency() : '');
foreach ($outcomes as $ok=>&$r) {
if ( isset($r->post_type) &&
in_array($r->post_type, array('product', 'product_variation'))
) {
$p = wc_get_product( $r->id );
$value = $p->get_price();
if ( $foreign money != '' )
$value = wc_price($value, array('foreign money' => $foreign money));
else
$value = wc_price($value);
$r->title .= ' - ' . $value;
}
}
return $outcomes;
}