Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hamidrezayazdani/5995e9dcf2db7cc002f45cda317f10ab to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/5995e9dcf2db7cc002f45cda317f10ab to your computer and use it in GitHub Desktop.
نمایش توضیحات آیتم متغیر انتخاب شده محصول متغیر در صفحه محصول ووکامرس
<?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