This is the place where I opensource stuff and break things.
- 🔭 I’m currently working on something cool;
- 🌱 I’m currently learning Vue.js.
Show your support buy me a coffee.
This is the place where I opensource stuff and break things.
Show your support buy me a coffee.
<?php
add_filter( 'jet-woo-builder/template-functions/product-add-to-cart-settings', 'wvs_pro_archive_variation_button_args', 999, 2 );
function wvs_pro_archive_variation_button_args( $args, $product ) {
<?php
add_filter( 'jet-woo-builder/macros/macros-list', function( $macros ) {
$macros['percentage_sale_max'] = 'get_percentage_sale_max';
$macros['percentage_sale_min'] = 'get_percentage_sale_min';
<?php
add_filter( 'jet-woo-builder/template-functions/placeholder-thumbnail-src', '__your_prefix_get_wc_placeholder_image' );
function __your_prefix_get_wc_placeholder_image() {
$placeholder = wc_placeholder_img_src( 'woocommerce_thumbnail' );
<?php
add_filter( 'jet-woo-builder/jet-woo-taxonomy-tiles/tax_thumbnail', '__your_prefix_display_taxonomy_thumbnail', 10, 2 );
function __your_prefix_display_taxonomy_thumbnail( $image_key, $tax ) {
if ( $tax->taxonomy === 'category' ) {
<?php
add_filter( 'jet-woo-builder/tools/carousel/options', '__your_prefix_add_carousel_options' );
function __your_prefix_add_carousel_options( $options ) {
$options['freeMode'] = true;