Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created January 30, 2018 08:31
Show Gist options
  • Save kreamweb/860f3820dc3a3a411bab02c46833a6ba to your computer and use it in GitHub Desktop.
Save kreamweb/860f3820dc3a3a411bab02c46833a6ba to your computer and use it in GitHub Desktop.
<?php
if ( defined( 'YITH_WCAS_PREMIUM' ) ) {
add_filter( 'yith_wcas_suggestion', 'yith_wcas_suggestion' );
function yith_wcas_suggestion( $suggestions ) {
if ( isset( $suggestions['url'] ) ) {
$suggestions['url'] = add_query_arg( 'click', 'true', $suggestions['url'] );
}
return $suggestions;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment