Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created December 9, 2017 07:02
Show Gist options
  • Save kreamweb/052456c878b9a5b3e6e6df8c225538fe to your computer and use it in GitHub Desktop.
Save kreamweb/052456c878b9a5b3e6e6df8c225538fe to your computer and use it in GitHub Desktop.
Add sku in ajax search results
<?php
add_filter('yith_wcas_suggestion', 'yith_wcas_suggestion', 10, 2);
function yith_wcas_suggestion( $suggestion, $product ){
$sku = $product->get_sku();
if( ! empty( $sku ) ){
$suggestion['sku'] = '<span class="sku">SKU: '. $product->get_sku().'</span>';
}
return $suggestion;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment