Skip to content

Instantly share code, notes, and snippets.

View stuartduff's full-sized avatar

Stuart Duff stuartduff

View GitHub Profile
@stuartduff
stuartduff / adjust-wordpress-jpeg-image-quality.php
Created September 22, 2017 15:32
Adjust WordPress jpeg image quality
function sd_regenerate_thumbnail_quality() {
// increase or decrease from 0 to 100 for a percentage of image quality.
return 100;
}
add_filter( 'jpeg_quality', 'sd_regenerate_thumbnail_quality');
@stuartduff
stuartduff / wc-customer-cancel-payment-url.php
Created August 20, 2021 09:03
Set a custom return URL for canceled orders on WooCommerce
/* Paypal cancel order redirect */
add_filter( 'woocommerce_get_cancel_order_url_raw', 'paypal_canceled_redirect' );
function paypal_canceled_redirect(){
// Replace the URL below with the one you'd like to return to after a canceled order.
return "https://woocommerce.com";
}
@stuartduff
stuartduff / wc-restrict-email-domain-registration.php
Created August 18, 2021 10:36
WooCommerce Restrict registration to certain email domains
function is_valid_registration_email_domain( $username, $email, $validation_errors ){
$valid_email_domains = array( 'gmail.com', 'yahoo.com' ); // Add allowed domains here
$valid = false; // sets default validation to false
foreach( $valid_email_domains as $d ){
$d_length = strlen( $d );
$current_email_domain = strtolower( substr( $email, -($d_length), $d_length));
if( $current_email_domain == strtolower($d) ){
$valid = true;
break;
}
@stuartduff
stuartduff / woocommerce-dynamic-pricing-display-discount-table.php
Last active August 17, 2021 05:57
WooCommerce Dynamic Pricing display a table of dynamically generated discounts above the add to cart button http://cld.wthms.co/1ksKo/4u9gVw0f
add_action( 'woocommerce_before_add_to_cart_button', 'sd_display_bulk_discount_table' );
function sd_display_bulk_discount_table() {
global $woocommerce, $post, $product;
$array_rule_sets = get_post_meta( $post->ID, '_pricing_rules', true );
if ( $array_rule_sets && is_array( $array_rule_sets ) && sizeof( $array_rule_sets ) > 0 ) {
@stuartduff
stuartduff / sf-increase-recent-products-homepage.pgp
Last active July 9, 2021 13:13
Increase Storefront recent products homepage to 14
function increase_sf_recent_products( $args ) {
// Sets the maximum products to 14
$args['limit'] = 14;
// Output
return $args;
}
function remove_powerpack_filter() {
@stuartduff
stuartduff / wc-change-pakistani-rupee-symbol.php
Last active June 11, 2021 13:23
Change the pakistani rupe symbol in WooCommerce only on checkout page
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
if ( ! is_checkout() ) {
return $currency_symbol;
}
switch( $currency ) {
case 'PKR': $currency_symbol = 'PKR'; break;
@stuartduff
stuartduff / storefront-display-all-homepage-categories
Last active May 2, 2021 01:20
Display All Product Categories on Storefront homepage
/**
* Alters the output of the homepage product categories on the Storefront theme
* Affects the storefront_product_categories_args filter in /inc/storefront-template-functions.php
*/
function sd_display_all_home_product_categories( $args ) {
// Sets the maximum product categories to 50, you can increase this to display more if need be.
$args['limit'] = 50;
@stuartduff
stuartduff / storefront-homepage-all-product-categories.php
Created April 26, 2021 11:03
Displays all product categoris on the homepage of Storefront
function sd_display_four_home_product_categories( $args ) {
// Displays all product categoris on the homepage of Storefront
$args['limit'] = -1;
// Output
return $args;
}
add_filter( 'storefront_product_categories_args', 'sd_display_four_home_product_categories' );
@stuartduff
stuartduff / wc-remove-bookings-from-price.php
Created April 23, 2021 15:12
This code snippet will remove the word From: in the WooCommerce Bookings price display
function custom_booking_product_price( $price, $product ) {
$target_product_types = array(
'booking'
);
if ( in_array ( $product->product_type, $target_product_types ) ) {
$price = str_replace("From:", "", $price);
return $price;
}
// return normal price
return $price;
@stuartduff
stuartduff / remove-billing-email-field..php
Created April 8, 2021 14:38
Remove billing email field from WooCommerce
function custom_override_billing_fields( $fields ) {
unset($fields['billing_email']);
return $fields;
}
add_filter( 'woocommerce_billing_fields' , 'custom_override_billing_fields' );