View woocommerce-dynamic-pricing-display-discount-table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ) { |
View wc-stripe-add-product-metadata.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Add "Products" to Stripe metadata | |
*/ | |
function filter_wc_stripe_payment_metadata( $metadata, $order, $source ) { | |
$count = 1; | |
foreach( $order->get_items() as $item_id => $line_item ){ | |
$item_data = $line_item->get_data(); | |
$product = $line_item->get_product(); | |
$product_name = $product->get_name(); |
View sf-increase-recent-products-homepage.pgp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function increase_sf_recent_products( $args ) { | |
// Sets the maximum products to 14 | |
$args['limit'] = 14; | |
// Output | |
return $args; | |
} | |
function remove_powerpack_filter() { |
View wc-change-pakistani-rupee-symbol.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
View wc-store-onwer-pending-payment-email.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// New order notification only for "Pending" Order status | |
add_action( 'woocommerce_checkout_order_processed', 'pending_new_order_notification', 20, 1 ); | |
function pending_new_order_notification( $order_id ) { | |
// Get an instance of the WC_Order object | |
$order = wc_get_order( $order_id ); | |
// Only for "pending" order status | |
if( ! $order->has_status( 'pending' ) ) return; | |
// Get an instance of the WC_Email_New_Order object |
View wc-subscriptions-only-allow-one-subscription.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('woocommerce_add_to_cart_validation', 'check_num_of_subscriptions', 10, 2); | |
function check_num_of_subscriptions( $valid, $product_id ) | |
{ | |
$product_to_add = wc_get_product( $product_id ); | |
if ( $product_to_add instanceof WC_Product_Subscription || $product_to_add instanceof WC_Product_Variable_Subscription) { | |
// alternative use: $has_sub = wcs_user_has_subscription( '', '', 'active' ); | |
if ( has_active_subscription() ) { |
View storefront-display-all-homepage-categories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
View storefront-homepage-all-product-categories.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' ); |
View wc-remove-bookings-from-price.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
View remove-billing-email-field..php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function custom_override_billing_fields( $fields ) { | |
unset($fields['billing_email']); | |
return $fields; | |
} | |
add_filter( 'woocommerce_billing_fields' , 'custom_override_billing_fields' ); |