Created
January 25, 2015 16:59
-
-
Save SeanChDavis/b7c04b65be67402e9610 to your computer and use it in GitHub Desktop.
EDD - Link to Product Page from Download History Table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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