Skip to content

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.

Voxel Guide assistant
Ask about snippets, addons & how-tos

Hey — how can I help?

I can dig through the library for snippets, addons, and tutorials.

AI can be wrong — double-check anything important.