by timhampton | Jun 22, 2015 | Technology, Web Development, Wordpress
Simply add the code below into your functions.php : add_filter(‘woocommerce_variable_price_html’, ‘custom_variation_price’, 10, 2); function custom_variation_price( $price, $product ) { $price = ”; if ( !$product->min_variation_price ||...
by timhampton | Jun 22, 2015 | Learn, SQL
When querying the database, you use the SELECT clause to select data from the database. Example 1: Say you had a basic table, containing people, and you wanted their names and birthdays. SELECT name, birthday FROM People This query would return all the names and...