Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #642166

    I have wallpapers that I would like users to download easily with a download button. Does Enfold have this function?

    #642254

    Hey acidseaforce!

    You can simply link your buttons to your images. You can also turn on custom CSS field for ALB elements – kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and edit them to give them a custom class and then add following code to functions.php file in Appearance > Editor to add “download” attribute to your images

    function add_dl_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.your-custom-class img').attr('download');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'add_dl_attr');

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.