|
|
__( 'US', 'pqc' ),
'2' => __( 'International', 'pqc' ),
);
$options = '';
foreach ( $s_options as $key => $value ) {
$selected = selected( $shop_location, $key, false );
$options .= '';
}
echo '';
?>
|
|
|
__( 'Price Calculation and Instant Checkout', 'pqc' ),
'2' => __( 'Estimated Price and Request Price', 'pqc' ),
);
$options = '';
foreach ( $c_options as $key => $value ) {
$selected = selected( $checkout_option, $key, false );
$options .= '';
}
echo '';
?>
|