Display Name

add_filter(‘frm_user_id_display’, ‘frm_show_user_display_name_1’); function frm_show_user_display_name_1() { return ‘display_name’; }Continue reading

Underline-Highlight Text Animation Hover Before::After

.highlight-text { font-size: 24px; font-weight: bold; position: relative; display: inline; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; transition: color 0.3s ease-in-out; } .highlight-text::after { content: “”; position: absolute; left: 0; bottom: 0; width: 100%; height: 0; background-color: yellow; z-index: -1; /*…Continue reading

Home Page

{ “@context”: “https://schema.org”, “@type”: “LocalBusiness”, “name”: “Angela Luna Therapy”, “url”: “https://angelalunatherapy.com/”, “logo”: “https://angelalunatherapy.com/wp-content/uploads/2023/11/LOGO-Angela_Luna.png”, “image”: “https://angelalunatherapy.com/wp-content/uploads/2023/11/LOGO-Angela_Luna.png”, “description”: “Holistic trauma therapy specializing in Art Therapy, EMDR, Brainspotting, and Soul Collage.”, “address”: [ { “@type”: “PostalAddress”, “streetAddress”: “1614 Woolsey St, Suite D”, “addressLocality”:…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