I got my syntax correct and the is_page is now working when I add it AFTER the wp_footer call.
If I want to make an exception for having the drawer OPEN on load, do I follow the same protocol? I tried using the same is_page for the other page where I want the drawer to open on load, but it stays closed. Looking at the page, the script appears but it doesn’t cause the drawer to open. You can see it on the home page http://www.rosssolargroup.com
Script I added:
<?php if(is_page(429)): ?>
<script type="text/javascript">jQuery(document).ready(function($) {jQuery("#sss-sidebar-source-div-1").openOnLoad("true");});</script>
<?php endif; ?>
Is there another way to reverse the “false” to “true” on page load?