Emanuela Antonina Castorina kreamweb
-
Kream di Emanuela Castorina
- Acicatena (CT) - Italy
View yith_ywdpd_table_pricing.php
<?php | |
remove_filter( 'woocommerce_'.YITH_WC_Dynamic_Pricing_Frontend()->get_product_filter.'get_price', array( YITH_WC_Dynamic_Pricing_Frontend(), 'get_price' ) ); | |
remove_filter( 'woocommerce_' . YITH_WC_Dynamic_Pricing_Frontend()->get_product_filter . 'variation_get_price', array( YITH_WC_Dynamic_Pricing_Frontend(), 'get_price' ) ); | |
$tax_display_mode = get_option( 'woocommerce_tax_display_shop' ); | |
if ( $label_table != '' ): | |
?> | |
<p class="ywdpd-table-discounts-label"><strong><?php echo $label_table ?></strong> | |
<?php if ( $until != '' ) { | |
echo "<span>$until</span>"; |
View functions.php
<?php | |
add_filter( 'ywdpd_round_total_price', 'ywdpd_round_price_for_single_product' ); | |
function ywdpd_round_price_for_single_product(){ | |
return false; | |
} | |
View functions.php
<?php | |
if ( isset( $_GET['ywpar_fix_points7'] ) ) { | |
add_action( 'init', 'start_the_script7' ); | |
function start_the_script7() { | |
global $wpdb; | |
$table_name = $wpdb->prefix . 'yith_ywpar_points_log'; | |
$limit = 10; |
View functions.php
<?php | |
function ywpar_calculate_rewarded_points( $user_id ){ | |
global $wpdb; | |
$table_name = $wpdb->prefix . 'yith_ywpar_points_log'; | |
$query = "SELECT SUM(ywpar_points.amount) as rewarded_points FROM $table_name as ywpar_points where user_id = $user_id AND action = 'redeemed_points'"; | |
$res = $wpdb->get_row( $query ); |
View functions.php
<?php | |
if ( class_exists( 'YITH_WC_Subscription' ) ) { | |
add_action( 'ywsbs_renew_subscription', 'ywsbs_renew_subscription_add_custom_field', 10, 2 ); | |
function ywsbs_renew_subscription_add_custom_field( $order_id, $subscription_id ) { | |
$subscription = ywsbs_get_subscription( $subscription_id ); | |
$parent_order = $subscription->get_order(); | |
$renew_order = wc_get_order( $order_id ); | |
$meta_list = array( | |
'_billing_birthdate', |
View class.product-gtin-wc.php
<?php | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly | |
} | |
/** | |
* The core plugin class. | |
* | |
* This is used to define internationalization, general hooks, and |
View file.php
<?php | |
add_action('wp', function(){ echo '<pre>';print_r($GLOBALS['wp_filter']); echo '</pre>';exit; } ); |
View request-quote-view.php
<?php | |
/** | |
* This file belongs to the YIT Plugin Framework. | |
* | |
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0) | |
* that is bundled with this package in the file LICENSE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://www.gnu.org/licenses/gpl-3.0.txt | |
*/ |
View functions.php
<?php | |
add_filter('yith_paypal_ec_set_express_checkout_request_parameters', 'yith_paypal_ec_set_express_checkout_request_parameters'); | |
function yith_paypal_ec_set_express_checkout_request_parameters( $args ){ | |
$args['NOSHIPPING'] = 2; | |
$args['ADDROVERRIDE'] = 1; | |
return $args; | |
} |
View functions.php
<?php | |
/** | |
* Fix to remove the conflict between YITH WooCommerce Request a Quote and WooCommerce Subscription | |
* when a request of quote is sent. | |
*/ | |
add_action('ywraq_before_create_order', 'ywraq_fix_woocommerce_subscription_conflict'); | |
function ywraq_fix_woocommerce_subscription_conflict(){ | |
remove_filter( 'woocommerce_payment_complete_order_status', 'WC_Subscriptions_Order::maybe_autocomplete_order', 10 ); |
NewerOlder