Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sunbbon/d917fabe3c0f6bbeb707ef32befc3e17 to your computer and use it in GitHub Desktop.
Save sunbbon/d917fabe3c0f6bbeb707ef32befc3e17 to your computer and use it in GitHub Desktop.
Easy Digital Downloads - link products at checkout back to their respective single download pages
<?php
// change this:
echo '<span class="edd_checkout_cart_item_title">' . esc_html( $item_title ) . '</span>';
// to this:
echo '<a href="' . get_the_permalink( $item['id'] ) . '"><span class="edd_checkout_cart_item_title">' . esc_html( $item_title ) . '</span></a>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment