Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: accordion closed only on mobile #1421547

    Chatp GPT-4 has got me going! :D

    function custom_header_code() {
        ?>
    	<script type="text/javascript">
    			
    		document.addEventListener('DOMContentLoaded', (event) => {
    			if (window.innerWidth <= 600) {
    				const div = document.querySelector('div#toggle-id-1');
    				const p = document.querySelector('.toggler');
    				if(div || p) {
    					div.classList.remove('active_tc');
    					p.classList.remove('activeTitle');
    				}
    			}
            });
    
    	</script>
        <?php
    }
    add_action( 'wp_head', 'custom_header_code' );
    • This reply was modified 1 year, 1 month ago by csabaio.
Viewing 1 post (of 1 total)