Replace Variable Price With Variation Price

function g9_update_price_with_variation_price() { global $product; $price = $product->get_price_html(); wc_enqueue_js(” jQuery(document).ready(function ($) { $(document).on(‘found_variation’, ‘form.cart’, function( event, variation ) { if(variation.price_html) $(‘.summary > p.price’).html(variation.price_html); $(‘.summary .woocommerce-variation-price’).hide(); }); $(document).on(‘hide_variation’, ‘form.cart’, function( event, variation ) { $(‘.summary > p.price’).html(‘” . $price . “‘);…Continue reading

replace events with moments

add_filter( ‘tribe_event_label_singular’, function() { return ‘Moment’; } ); add_filter( ‘tribe_event_label_singular_lowercase’, function() { return ‘moment’; } ); add_filter( ‘tribe_event_label_plural’, function() { return ‘Moments’; } ); add_filter( ‘tribe_event_label_plural_lowercase’, function() { return ‘moments’; } );Continue reading

Redirect User by Domain

// This line is adding a custom function to the ‘login_redirect’ filter. The ‘login_redirect’ filter is applied right after a user logs in to WordPress. The custom function ‘wppbc_custom_login_redirect’ is given a priority of 10, and it accepts 3 arguments.…Continue reading