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
<?php | |
/** | |
* Iconic Linked Variations - Force display non LV attributes in cart. | |
* | |
* @param array $item_data | |
* @param array $cart_item | |
* | |
* @return array | |
*/ | |
function iconic_display_non_lv_attributes_in_cart( $item_data, $cart_item ) { |
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
<?php | |
/** | |
* Add the clear selection button. | |
*/ | |
add_action( | |
'iconic_wds_after_delivery_details_fields', | |
function() { | |
echo '<a href="#" class="iconic-wds-clear-selection-btn">Clear selection</a>'; | |
} | |
); |
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
<?php | |
/** | |
* Orderable DIsable the Getting started tab. | |
* | |
* @param array $settings Settings array. | |
* | |
* @return array | |
*/ | |
function orderable_disable_getting_started_tab( $settings ) { | |
unset( $settings['tabs'][0] ); |
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
<?php | |
/** | |
* Orderable - code snippet to hide the product addon price on mini cart. | |
*/ | |
add_action( | |
'init', | |
function() { | |
remove_filter( 'woocommerce_get_item_data', array( 'Orderable_Addons_Pro_Fields', 'display_field_value_on_cart' ), 10 ); | |
add_filter( |
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
<?php | |
// Orderable custom checkout - change shipping title | |
add_action( | |
'wp_footer', | |
function() { | |
if ( is_checkout() ) { | |
?> | |
<script> | |
orderable_checkout_pro_params.i18n.shipping_title = 'Pickup/ Delivery'; | |
</script> |
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
<?php | |
/** | |
* Orderable - Fix issue where addons are not working for some product. | |
* This issue happens because by default for performance reasons, | |
* orderable only loads the first 100 product addons posts (orderable_addons) | |
* This snippet would force load 500 addons. | |
* | |
* @param WP_Query $q Query. | |
* | |
* @return void |
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
<?php | |
/* | |
This function check for plugin udpates, if there are any present then | |
will automatically update the plugins. | |
*/ | |
function perform_updates() { | |
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; | |
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php'; | |
require_once ABSPATH . 'wp-admin/includes/class-automatic-upgrader-skin.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
<?php | |
add_action( | |
'woocommerce_review_order_before_order_total', | |
function() { | |
if ( empty( WC()->cart->get_shipping_total() ) ) { | |
return; | |
} | |
echo sprintf( '<tr class="fee orderable-shipping-row"><th>%s</th><td>%s</td></tr>', esc_html__( 'Shipping', 'flux-checkout' ), wc_price( WC()->cart->get_shipping_total() ) ); | |
} | |
); |
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
<?php | |
/** | |
* Flux checkout - remove coupon form. | |
* | |
* @return void | |
*/ | |
function flux_remove_coupon_form() { | |
remove_action( 'woocommerce_review_order_after_cart_contents', array( 'Iconic_Flux_Sidebar', 'checkout_add_coupon_form' ), 9 ); | |
} | |
add_action( 'init', 'flux_remove_coupon_form', 20 ); |
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
<?php | |
/** | |
* Flux checkout - reposition coupon form. | |
* | |
* @return void | |
*/ | |
function flux_reposition_coupon_form() { | |
remove_action( 'woocommerce_review_order_after_cart_contents', array( 'Iconic_Flux_Sidebar', 'checkout_add_coupon_form' ), 9 ); | |
add_action( 'woocommerce_review_order_before_payment', array( 'Iconic_Flux_Sidebar', 'checkout_add_coupon_form' ) ); | |
} |