Location: site_wide_header
BuddyBoss UI Sized
@media (max-width: 768px) { .activity-content * { font-size: 20px; } .activity-list .activity-item .bp-activity-head .activity-avatar img.avatar { max-width: 40px; } .activity-list .activity-item .activity-header * { font-size: 18px; } .activity-group-avatar .group-avatar { max-width: 40px; width: 40px; height: 40px; } .activity-group-avatar .author-avatar {…Continue reading
Custom Separator
function getSeparator() { return window.location.href.includes(‘?’) ? ‘&’ : ‘?’; } document.addEventListener(‘om.Dtr.init’, function (event) { const separator = getSeparator(); event.detail.Dtr.setCustomVariable(‘separator’, separator); });Continue reading
Test Revisions
I am making more changes even more changes nowContinue reading
Graili shop
Graili shop
Untitled Snippet
.entry-meta { display: none; }Continue reading
Make Sponsor ID a Meta Tag
/* on category pages, grabbing the sponsorship_id is the last post included in the list – not the category’s sponsor id. * this code deals with this…borrowed from equinenetwork-gam-public-footer.php */ $term = get_queried_object(); if ( function_exists(‘get_field’) == true && get_field(‘sponlineitemid’)…Continue reading
Envira Albums – remove the galleries links from the album page
document.addEventListener(‘DOMContentLoaded’, function() { const targetNode = document.body; // Or a more specific parent element of the gallery const config = { childList: true, subtree: true }; const callback = function(mutationsList, observer) { for (const mutation of mutationsList) { if (mutation.type…Continue reading
cmplz_show_banner_on_click
function addEvent(event, selector, callback, context) { document.addEventListener(event, e => { if ( e.target.closest(selector) ) { callback(e); } }); } addEvent(‘click’, ‘.cmplz-show-banner’, function(){ document.querySelectorAll(‘.cmplz-manage-consent’).forEach(obj => { obj.click(); }); });Continue reading