Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Created February 19, 2026 06:52
Show Gist options
  • Select an option

  • Save pramodjodhani/f3a0ccb1a21f0347448db1e60dd72a15 to your computer and use it in GitHub Desktop.

Select an option

Save pramodjodhani/f3a0ccb1a21f0347448db1e60dd72a15 to your computer and use it in GitHub Desktop.
Iconic Product configurator - compatibility with Avada theme's swatches.
<?php
/**
* Iconic Product configurator - compatibility with Avada theme's swatches.
*/
add_action( 'wp_footer', function() {
?>
<script>
jQuery(document).ready(function($) {
jQuery('.avada-color-select').click(function() {
const siblings = jQuery(this).siblings('.avada-select-parent');
setTimeout(() => siblings.find('select').trigger('change'), 100 );
})
});
</script>
<?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment