Total Theme: Download Link for Grid images via JS
// Download image link. add_action( 'wp_footer', function() { ?> <script> /* Insert download links to all image grid images */ document.querySelectorAll( '.vcex-image-grid-entry-link' ).forEach( ( link ) => { const downloadLink = document.createElement( 'a' ); downloadLink.className = 'frandeprado-image-download-link'; downloadLink.setAttribute( 'href', link.getAttribute(…
