View woocommerce-component-props-discount-method.php
<?php | |
/** | |
* Plugin Name: WooCommerce Composite Products - Early Discount Calculations | |
* Plugin URI: https://woocommerce.com/products/composite-products/ | |
* Description: Calculate discounted Component Option prices on session load. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View woocommerce-bundles-props-discount-method.php
<?php | |
/** | |
* Plugin Name: WooCommerce Product Bundles - Early Discount Calculations | |
* Plugin URI: https://woocommerce.com/products/product-bundles/ | |
* Description: Calculate discounted bundled cart item prices on session load. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View woocommerce-bundles-discount-over-regular-prices.php
<?php | |
/** | |
* Plugin Name: WooCommerce Product Bundles - Discounts over Regular Prices | |
* Plugin URI: https://woocommerce.com/products/product-bundles/ | |
* Description: Use this snippet to apply bundled item discounts on regular prices. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View wc_pb_dependency_relationship_and.php
add_filter( 'wc_pd_dependency_relationship', 'wc_pb_dependency_relationship_and', 10, 2 ); | |
function wc_pb_dependency_relationship_and( $relationship, $product ) { | |
$relationship = 'and'; | |
return $relationship; | |
} |
View composites_sale_status_tweak.php
<?php | |
/** | |
* Plugin Name: WooCommerce Composite Products - Sale Status Tweak | |
* Plugin URI: https://woocommerce.com/products/composite-products/ | |
* Description: Prevents Composite Products with component discounts from appearing as on-sale. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View woocommerce-composites-prevent-subtotals-mods.php
<?php | |
/** | |
* Plugin Name: WooCommerce Composite Products - Prevent Cart/Order Item Subtotal Modifications | |
* Plugin URI: https://woocommerce.com/products/composite-products/ | |
* Description: Prevents Composite Products from modifying the appearance of cart/order item subtotals. Requires v3.7+. | |
* Version: 1.1 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View woocommerce-bundles-prevent-subtotals-mods.php
<?php | |
/** | |
* Plugin Name: WooCommerce Product Bundles - Prevent Subtotals Aggregation | |
* Plugin URI: https://woocommerce.com/products/product-bundles/ | |
* Description: Prevents Product Bundles from displaying aggregated item subtotals in cart/order templates. Requires v5.5+. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View bundles-stock-cache-debug.php
<?php | |
/** | |
* Plugin Name: WooCommerce Product Bundles - Disable Stock Cache | |
* Plugin URI: https://woocommerce.com/products/product-bundles/ | |
* Description: Use this plugin to disable the bundled item stock status caching mechanism introduced in Product Bundles v5.0+. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* | |
* Requires at least: 4.1 |
View woocommerce-bundles-optional-checkbox-state.php
<?php | |
/** | |
* Plugin Name: WooCommerce Product Bundles - Optional Items Checked by Default | |
* Plugin URI: https://woocommerce.com/products/product-bundles/ | |
* Description: Use this plugin to have optional bundled items checked/selected by default. | |
* Version: 1.1 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
View woocommerce-composites-autotransition.php
<?php | |
/** | |
* Plugin Name: WooCommerce Composite Products - Autotransition | |
* Plugin URI: https://woocommerce.com/products/composite-products/ | |
* Description: Use this snippet to automatically move to the next step after making a valid selection. | |
* Version: 1.0 | |
* Author: SomewhereWarm | |
* Author URI: https://somewherewarm.gr/ | |
* Developer: Manos Psychogyiopoulos | |
* |
NewerOlder