This file contains hidden or 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 ability to compare the sum of all dimensions to Table Rate shipping | |
* https://codecanyon.net/item/table-rate-shipping-for-woocommerce/3796656?ref=bolderelements | |
* | |
* Code should be added to theme's functions.php file | |
*/ | |
function betrs_add_dimensions_sum_cond( $conditions ) { | |
// add new option to list | |
$conditions['dimensions_sum'] = 'Dimensions Sum'; | |
This file contains hidden or 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
<?php | |
// Add restocking form container | |
if( class_exists( 'BE_Product_Alerts_Form_Restocking' ) ) { | |
// check if enabled | |
$bepa_settings = get_option( 'woocommerce_product-alerts-restocking_settings' ); | |
if( ! is_admin() && $bepa_settings['enabled'] !== 'no' ) { | |
// check if the single product is out of stock | |
if( ! $product->is_type( 'variable' ) && ! $product->is_in_stock() ) { |
NewerOlder