Skip to content

Instantly share code, notes, and snippets.

View appbisweb's full-sized avatar

Jan Luther appbisweb

View GitHub Profile
@appbisweb
appbisweb / admin.js
Last active February 9, 2021 17:19 — forked from prasetyop/admin.css
Flexible Content Preview Pop Up
const imagePath = theme_var.upload
document.addEventListener("DOMContentLoaded", function(event) {
setUpModalHTML()
})
function setUpModalHTML(){
const modalView = document.createElement("div")
modalView.id = "abw_modalview"
@appbisweb
appbisweb / functions.php
Last active August 16, 2019 08:38 — forked from fldtrace/functions.php
Better, Faster, Responsive Images for Divi – Upload in Divi child theme.
<?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;