Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ahmedeshaan/0433aa5bfe25258a1084d37d5f624c04 to your computer and use it in GitHub Desktop.

Select an option

Save ahmedeshaan/0433aa5bfe25258a1084d37d5f624c04 to your computer and use it in GitHub Desktop.
<?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 ) {
if ( is_product_taxonomy() || is_post_type_archive( 'product' ) || is_page( wc_get_page_id( 'shop' ) ) ) {
$wvs_archive_variation_template = wvs_pro_archive_variation_template();
$html .= $wvs_archive_variation_template;
return '<div class="price">' . $html . '</div>';
}
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment