Snippets / JS
JS
PHP
Make Vendor Notes to customer on order page always open!
M
mohmedgamal
·
86 views
·
Updated 2 years ago
Make Vendor Notes to customer on order page always open!
put it in your js file or include it in header
$(document).ready(function() {
$('details.order-accordion').attr('open' ,'');
});
JS · 3 lines
php version
function add_custom_jquery_script() { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $('details.order-accordion').attr('open', ''); }); </script> <?php } add_action('wp_head', 'add_custom_jquery_script');
PHP · 1 lines
Discussion
Ask a question or share how you used this.
Log in
to join the discussion.
No comments yet — be the first.