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 | |
$paged = 1; | |
if ( isset( $_GET['page_no'] ) ) { | |
$paged = (int)$_GET['page_no']; | |
} else { | |
$paged = 1; | |
} | |
if ( ! $paged ) { | |
$paged = 1; |
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 | |
// Get available shipping methods before products added into cart | |
// below function is intended to work with single shipping zone and their methods | |
// Place this code into functions.php file of your WP active theme | |
if ( ! function_exists( 'get_available_shipping_methods' ) ) { | |
function get_available_shipping_methods() | |
{ | |
global $wpdb; |