Skip to content

Instantly share code, notes, and snippets.

@grola
Created March 27, 2018 06:41
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 grola/417dfb0ea0f6b7a46d80fa71c737ad12 to your computer and use it in GitHub Desktop.
Save grola/417dfb0ea0f6b7a46d80fa71c737ad12 to your computer and use it in GitHub Desktop.
Add anchor to cart URL
<?php
add_filter( 'woocommerce_get_cart_page_permalink', 'studiowp_woocommerce_get_cart_page_permalink' );
function studiowp_woocommerce_get_cart_page_permalink( $permalink ) {
return $permalink . '#my_id';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment