Skip to content
Snippets Groups Projects
Select Git revision
  • dcc87fa08ba25f2a4275acb13e7c6815eb5effa4
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 3.3.0
  • 3.2.1
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.4.12
  • 2.4.11
  • 2.4.10
  • 2.4.9
  • 2.4.8
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.2
  • 2.3.1
  • 2.3
25 results

FieldProvider.php

Blame
  • functions.php 709 B
    <?php
    
    //include __DIR__. "/baselinker_functions.php";
    
    if ( file_exists( __DIR__. '/functions_add.php' ) ) {
    	include __DIR__ . '/functions_add.php';
    }
    
    include __DIR__ . '/functions_rest_api.php';
    include __DIR__ . '/functions_flexible_shipping.php';
    
    /**
     * Disable images regenerations
     */
    add_filter( 'woocommerce_background_image_regeneration', '__return_false' );
    
    /**
     * Send tracker data to testdata.wpdesk.org instead of data.wpdesk.org
     */
    add_filter( 'wpdesk_tracker_use_testdata', '__return_true' );
    
    add_filter( 'wpdesk_tracker_enabled', '__return_true' );
    
    add_filter( 'flexible_shipping_ups_testing', '__return_true' );
    
    add_filter( 'flexible_shipping_dhl_express_testing', '__return_true' );