Last active
October 8, 2021 17:42
-
-
Save hamidrezayazdani/5995e9dcf2db7cc002f45cda317f10ab to your computer and use it in GitHub Desktop.
نمایش توضیحات آیتم متغیر انتخاب شده محصول متغیر در صفحه محصول ووکامرس
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 | |
function ywp_show_variation_description() { ?> | |
<div id="ywp-var-desc"></div> | |
<script> | |
jQuery(function($){ | |
$('form.variations_form').on('show_variation', function (event, data) { | |
$('#ywp-var-desc').html(data.variation_description); | |
}); | |
}) | |
</script> | |
<?php | |
} | |
add_action( 'woocommerce_before_add_to_cart_quantity', 'ywp_show_variation_description' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment