Skip to content

Instantly share code, notes, and snippets.

@solepixel
Created October 11, 2017 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solepixel/8e6a589895cac08a31c80d7f618dfd6c to your computer and use it in GitHub Desktop.
Save solepixel/8e6a589895cac08a31c80d7f618dfd6c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wc_add_to_cart_params', 'kingcotton_remove_query_strings' );
add_filter( 'woocommerce_params', 'kingcotton_remove_query_strings' );
function kingcotton_remove_query_strings( $params ) {
$params['wc_ajax_url'] = '/?wc-ajax=%%endpoint%%';
return $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment