Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created January 25, 2015 16:59
Show Gist options
  • Save SeanChDavis/b7c04b65be67402e9610 to your computer and use it in GitHub Desktop.
Save SeanChDavis/b7c04b65be67402e9610 to your computer and use it in GitHub Desktop.
EDD - Link to Product Page from Download History Table
Copy the history-downloads.php file from the EDD templates folder into
the "edd_templates" directory in active theme. Once completed...
FIND:
<td class="edd_download_download_name"><?php echo esc_html( $name ); ?></td>
REPLACE WITH:
<td class="edd_download_download_name"><a href="<?php echo esc_url( get_permalink( $download['id'] ) ); ?>"><?php echo esc_html( $name ); ?></a></td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment