>
Download This Plugin | |
Download Elegant Themes | |
Name | EDD Hide Download |
Version | 1.2.7 |
Author | Andrew Munro, Sumobi |
Rating | 100 |
Last updated | 2015-01-21 02:15:00 |
Downloads |
3483
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
EDD Hide Download plugin added 15 bytes of resources to the Home page and 9 bytes of resources to the sample Post page.
EDD Hide Download plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! EDD Hide Download plugin ads no tables to your Wordpress blog database.This plugin requires Easy Digital Downloads.
It allows you to:
This plugin is extremely useful in the following situations:
Filter example
Example filter of how you can change the redirect based on the download ID. Copy this function to your child theme's functions.php or custom plugin
function sumobi_custom_edd_hide_download_redirect( $url ) {
// download has ID of 17
if ( '17' == get_the_ID() ) {
$url = 'http://easydigitaldownloads.com'; // redirect user to another external URL
}
// download has ID of 15
if( '15' == get_the_ID() ) {
$url = get_permalink( '8' ); // redirect to another download which has an ID of 8
}
// return our new URL
return $url;
}
add_filter( 'edd_hide_download_redirect', 'sumobi_custom_edd_hide_download_redirect' );
Example filter of how you can globally change the redirect. Copy this function to your child theme's functions.php or custom plugin
function sumobi_custom_edd_hide_download_redirect_url( $url ) {
$url = get_permalink( '8' ); // redirect to another download, post or page
return $url;
}
add_filter( 'edd_hide_download_redirect', 'sumobi_custom_edd_hide_download_redirect' );
Extensions for Easy Digital Downloads
https://easydigitaldownloads.com/extensions/
Tips for Easy Digital Downloads
Stay up to date
Follow me on Twitter http://twitter.com/sumobi_
Become a fan on Facebook http://www.facebook.com/sumobicom