Hiding the Currency Symbol in WPForms Total Field

/** * Hide currency symbol in WPForms. */ add_filter( ‘wpforms_currencies’, function( $currencies ) { $form_data = wpforms()->obj( ‘process’ )->form_data ?? []; if ( empty( $form_data ) ) { $frontend = wpforms()->obj( ‘frontend’ ); if ( ! empty( $frontend->forms ) )…Continue reading

Search Filter by Genre and Artist

add_action( ‘pre_get_posts’, ‘softcomplexmusic_custom_search_filter’ ); function softcomplexmusic_custom_search_filter( $query ) { if ( !is_admin() && $query->is_main_query() && $query->is_search ) { $tax_query = []; if ( !empty($_GET[‘genre’]) ) { $tax_query[] = array( ‘taxonomy’ => ‘genre’, // Ensure this matches your site’s taxonomy slug…Continue reading