Skip to content
Snippets Groups Projects
Select Git revision
  • 1502ed6377514bf22e2999be2caa829db3d22f22
  • master default protected
  • fix/woo-stubs-dir
  • default-packages
  • use-internal-packages
  • update-setup
  • feature/wpdesk-cs
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3
  • 2.2.1
  • 2.2
  • 2.1
  • 2.0
  • 1.10.15
  • 1.10.12
  • 1.10.8
  • 1.10.7
  • 1.10.6
  • 1.10.5
  • 1.10.3
  • 1.10.2
27 results

app.js

Blame
  • functions.php 651 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( 'flexible_shipping_ups_testing', '__return_true' );
    
    add_filter( 'flexible_shipping_dhl_express_testing', '__return_true' );