I have wallpapers that I would like users to download easily with a download button. Does Enfold have this function?
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