Support

Account

Forum Replies Created

  • Okay so you should use the following:

    <?php 
    $download = get_field('download');
    if( $download ): ?>
        <a class="button" href="<?php echo esc_url( $download ); ?>">Download File</a>
    <?php endif; ?>

    This would go in the php template file with the other content for the page you wish to add it to.

  • Try using the $link variable in place of the_field('datenpacket') – this will use get_field('datenpacket') instead which should create the proper href.

  • Are you meaning for your end user to download a file? If you use URL as the field type, it will take you to the url. By using the File field type, you can select ‘File URL’ as the return value and then on the php page use:

    <?php
    $file = get_field('download');
    if( $file ): ?>
        <a href="<?php echo $file['url']; ?>"><?php echo $file['filename']; ?></a>
    <?php endif; ?>

    to grab the value on the front end. Then when the link is clicked, the download will be done automatically.

Viewing 3 posts - 1 through 3 (of 3 total)