Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save UraraReika/fa80a674ef37d13e51f64672e79bb1c7 to your computer and use it in GitHub Desktop.
Save UraraReika/fa80a674ef37d13e51f64672e79bb1c7 to your computer and use it in GitHub Desktop.
Add variation swatches template inside archive template price widget
<?php
add_filter( 'jet-woo-builder/template-functions/product-price', 'get_wvs_pro_archive_variation_template', 999, 1 );
function get_wvs_pro_archive_variation_template( $html ) {
$wvs_archive_variation_template = wvs_pro_archive_variation_template();
$html .= $wvs_archive_variation_template;
return '<div class="price">' . $html . '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment