Created
February 19, 2026 06:52
-
-
Save pramodjodhani/f3a0ccb1a21f0347448db1e60dd72a15 to your computer and use it in GitHub Desktop.
Iconic Product configurator - compatibility with Avada theme's swatches.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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