Custom text on Download button
-
Hi there,
I’m looking to change the text on the download button to not show the title or the download count. I’ve managed to remove the download count but how do I remove the title as well. Here is the code change in the content-download-button.php
<?php /** * Download button */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly ?> <p> <a class="aligncenter download-button" href="<?php $dlm_download->the_download_link(); ?>" rel="nofollow"> <?php printf( esc_html__( 'Download “%s”', 'download-monitor' ) , wp_kses_post( $dlm_download->get_title() )); ?> </a> </p>
I tried removing this part
, wp_kses_post( $dlm_download->get_title() )
but I ended up with an error.
Any help would be greatly appreciated!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Custom text on Download button’ is closed to new replies.