This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const imagePath = theme_var.upload | |
document.addEventListener("DOMContentLoaded", function(event) { | |
setUpModalHTML() | |
}) | |
function setUpModalHTML(){ | |
const modalView = document.createElement("div") | |
modalView.id = "abw_modalview" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// ********** Faster, Better Divi images****** | |
//Only run script when not logged | |
if (!wp_get_current_user()) { | |
add_action('wp_footer', 'hb_responsive_bg_image', 10); | |
} | |
//add responsiveness for background images | |
function hb_responsive_bg_image() { | |
global $wpdb; |